diff options
author | Mark Wielaard <mwielaard@redhat.com> | 2008-05-20 21:58:04 +0200 |
---|---|---|
committer | Mark Wielaard <mwielaard@redhat.com> | 2008-05-20 21:58:04 +0200 |
commit | fc5a2d42b6cc46a9d4f7f3919ddc74ce70ad2a66 (patch) | |
tree | 9ed4c1e26b51d6e3a861f878d622971de157f79b /testsuite/systemtap.syscall | |
parent | 3bf6ac451c7eecc5184e7823f29a293b7df53fa0 (diff) | |
download | systemtap-steved-fc5a2d42b6cc46a9d4f7f3919ddc74ce70ad2a66.tar.gz systemtap-steved-fc5a2d42b6cc46a9d4f7f3919ddc74ce70ad2a66.tar.xz systemtap-steved-fc5a2d42b6cc46a9d4f7f3919ddc74ce70ad2a66.zip |
PR5001: Remove _stp_ctime and always use ctime.
Diffstat (limited to 'testsuite/systemtap.syscall')
-rw-r--r-- | testsuite/systemtap.syscall/futimes.c | 2 | ||||
-rw-r--r-- | testsuite/systemtap.syscall/stat.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/systemtap.syscall/futimes.c b/testsuite/systemtap.syscall/futimes.c index 359afad3..eca1efc7 100644 --- a/testsuite/systemtap.syscall/futimes.c +++ b/testsuite/systemtap.syscall/futimes.c @@ -31,7 +31,7 @@ int main() times.actime = 1000000000; times.modtime = 2000000000; syscall(__NR_utime, "foobar", × ); - // utime ("foobar", \[2001/09/09-01:46:40, 2033/05/18-03:33:20\]) + // utime ("foobar", \[Sun Sep 9 01:46:40 2001, Wed May 18 03:33:20 2033]) #endif /* __NR_utimes */ #ifdef __NR_utimes diff --git a/testsuite/systemtap.syscall/stat.c b/testsuite/systemtap.syscall/stat.c index deade3e0..6be5cc79 100644 --- a/testsuite/systemtap.syscall/stat.c +++ b/testsuite/systemtap.syscall/stat.c @@ -39,7 +39,7 @@ int main() #ifdef __ia64__ // utimes ("foobar", \[1.000000\]\[1135641600.000000\]) = #else - // utime ("foobar", \[1970/01/01-00:00:01, 2005/12/27-00:00:00\]) = 0 + // utime ("foobar", \[Thu Jan 1 00:00:01 1970, Tue Dec 27 00:00:00 2005\]) = 0 #endif ubuf.actime = 1135690000; @@ -48,7 +48,7 @@ int main() #ifdef __ia64__ // utimes ("foobar", \[1135690000.000000\]\[1135700000.000000\]) = #else - // utime ("foobar", \[2005/12/27-13:26:40, 2005/12/27-16:13:20\]) = 0 + // utime ("foobar", \[Tue Dec 27 13:26:40 2005, Tue Dec 27 16:13:20 2005\]) = 0 #endif return 0; } |