diff options
author | Dave Brolley <brolley@redhat.com> | 2009-10-13 11:55:11 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-10-13 11:55:11 -0400 |
commit | f990359bd63bd4fc21e600e71c6a513d5b5b2ccb (patch) | |
tree | 16fb7638f2089476b2994ec7d8b2131e4a7b0b69 /testsuite/buildok/task_test.stp | |
parent | 8f6d8c2bd3e5c1d2881e2ebe1c7ad5deb389e581 (diff) | |
parent | ba9abf303e1bed196668f103b2a17c48e3df70aa (diff) | |
download | systemtap-steved-f990359bd63bd4fc21e600e71c6a513d5b5b2ccb.tar.gz systemtap-steved-f990359bd63bd4fc21e600e71c6a513d5b5b2ccb.tar.xz systemtap-steved-f990359bd63bd4fc21e600e71c6a513d5b5b2ccb.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/buildok/task_test.stp')
-rwxr-xr-x | testsuite/buildok/task_test.stp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/buildok/task_test.stp b/testsuite/buildok/task_test.stp index 792f96ea..e391377f 100755 --- a/testsuite/buildok/task_test.stp +++ b/testsuite/buildok/task_test.stp @@ -18,5 +18,13 @@ probe begin { log(sprint(task_max_file_handles(c))) log(sprint(pid2task(pid()))) log(sprint(pid2execname(pid()))) + + // task_time.stp + log(task_time_string()) + log(cputime_to_string(0)) + log(msecs_to_string(0)) + log(sprint(cputime_to_msecs(0))) + log(sprint(task_stime())) + log(sprint(task_utime())) exit() } |