summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Wielaard <mwielaard@redhat.com>2008-05-21 13:12:21 +0200
committerMark Wielaard <mwielaard@redhat.com>2008-05-21 13:12:21 +0200
commitaa215f04d4546c5c810d7accde3ad108e855f397 (patch)
treedbac3f3adf67e02fa779d566220539f032562f95
parentd15495ebff9e91135ae0923f4a36b2d2538bab54 (diff)
downloadsystemtap-steved-aa215f04d4546c5c810d7accde3ad108e855f397.tar.gz
systemtap-steved-aa215f04d4546c5c810d7accde3ad108e855f397.tar.xz
systemtap-steved-aa215f04d4546c5c810d7accde3ad108e855f397.zip
Check new (sub) functions of _struct_utimbuf_* and _struct_compat_utimbuf_*.
-rw-r--r--testsuite/ChangeLog7
-rwxr-xr-xtestsuite/buildok/aux_syscalls-embedded.stp6
2 files changed, 11 insertions, 2 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog
index 1be673fb..3c74b83d 100644
--- a/testsuite/ChangeLog
+++ b/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2008-05-21 Mark Wielaard <mwielaard@redhat.com>
+
+ * 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>
PR 5001
diff --git a/testsuite/buildok/aux_syscalls-embedded.stp b/testsuite/buildok/aux_syscalls-embedded.stp
index 2b552801..ce00893d 100755
--- a/testsuite/buildok/aux_syscalls-embedded.stp
+++ b/testsuite/buildok/aux_syscalls-embedded.stp
@@ -4,8 +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_u(0))
- print (_struct_compat_utimbuf_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))