summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuite/ChangeLog8
-rwxr-xr-xtestsuite/buildok/aux_syscalls-embedded.stp4
2 files changed, 9 insertions, 3 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index 30aaecbc..80f2ae78 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -5,10 +5,12 @@
* buildok/eleven.stp, systemtap.examples/disktop.stp,
transok/three.stp: Adapt to new warnings.
-2008-05-20 Frank Ch. Eigler <fche@elastic.org>
+2008-05-21 Mark Wielaard <mwielaard@redhat.com>
- PR 5001
- * buildok/aux_syscalls-embedded.stp: Grieve for *utimbuf_u.
+ * buildok/aux_syscalls-embedded.stp: Don't check _struct_utimbuf_u
+ and _struct_compat_utimbuf_u. Check new _struct_utimbuf_actime,
+ _struct_utimbuf_modtime, _struct_compat_utimbuf_actime and
+ _struct_compat_utimbuf_modtime.
2008-05-20 Mark Wielaard <mwielaard@redhat.com>
diff --git a/testsuite/buildok/aux_syscalls-embedded.stp b/testsuite/buildok/aux_syscalls-embedded.stp
index d4596aa4..ce00893d 100755
--- a/testsuite/buildok/aux_syscalls-embedded.stp
+++ b/testsuite/buildok/aux_syscalls-embedded.stp
@@ -4,6 +4,10 @@ probe begin {
print (_struct_timeval_u(0,0))
print (_struct_compat_timeval_u(0,0))
print (_struct_timezone_u (0))
+ print (_struct_utimbuf_actime(0))
+ print (_struct_utimbuf_modtime(0))
+ print (_struct_compat_utimbuf_actime(0))
+ print (_struct_compat_utimbuf_modtime(0))
print (_struct_timespec_u(0,0))
print (_struct_compat_timespec_u(0,0))
print (_struct_itimerspec_u(0))