diff options
author | Wenji Huang <wenji.huang@oracle.com> | 2008-10-28 02:43:23 -0400 |
---|---|---|
committer | Wenji Huang <wenji.huang@oracle.com> | 2008-10-28 02:43:23 -0400 |
commit | b972f47ac298a454b8a93cfb2d2d5c3be3ad88a4 (patch) | |
tree | 31318b672f7188fb48f4e7e56f056d1b8403bb44 /testsuite/buildok/context_test.stp | |
parent | ed70d5b028bf8af776380deda5e6a75857c41c28 (diff) | |
download | systemtap-steved-b972f47ac298a454b8a93cfb2d2d5c3be3ad88a4.tar.gz systemtap-steved-b972f47ac298a454b8a93cfb2d2d5c3be3ad88a4.tar.xz systemtap-steved-b972f47ac298a454b8a93cfb2d2d5c3be3ad88a4.zip |
Correct ioblock and scsi tapset for 2.6.28.
Diffstat (limited to 'testsuite/buildok/context_test.stp')
-rwxr-xr-x | testsuite/buildok/context_test.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/buildok/context_test.stp b/testsuite/buildok/context_test.stp index e98b0065..84f1cbf1 100755 --- a/testsuite/buildok/context_test.stp +++ b/testsuite/buildok/context_test.stp @@ -20,12 +20,12 @@ function print_stuff () { printf("pp is %s\n", pp()) } -probe kernel.function("uptime_read_proc") { +probe kernel.function("uptime_read_proc") ? { print("NOW IN UPTIME\n") print_stuff () } -probe kernel.function("uptime_read_proc").return { +probe kernel.function("uptime_read_proc").return ? { print("DONE WITH UPTIME\n") print_stuff () exit () |