diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/ChangeLog | 5 | ||||
-rwxr-xr-x | testsuite/buildok/timestamp.stp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/ChangeLog b/testsuite/ChangeLog index ed66dded..57f1b29d 100644 --- a/testsuite/ChangeLog +++ b/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2006-09-20 Josh Stone <joshua.i.stone@intel.com> + + PR 3233 + * buildok/timestamp.stp: add gettimeofday_ns test. + 2006-09-12 David Smith <dsmith@redhat.com> * Added .cvsignore file. diff --git a/testsuite/buildok/timestamp.stp b/testsuite/buildok/timestamp.stp index e071e781..4d6b8532 100755 --- a/testsuite/buildok/timestamp.stp +++ b/testsuite/buildok/timestamp.stp @@ -1,6 +1,6 @@ #! stap -p4 probe begin { - log(sprint(get_cycles() + gettimeofday_us() + + log(sprint(get_cycles() + gettimeofday_ns() + gettimeofday_us() + gettimeofday_ms() + gettimeofday_s())) } |