summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/kprobes.stp
diff options
context:
space:
mode:
authorWenji Huang <wenji.huang@oracle.com>2009-04-22 22:44:05 -0400
committerWenji Huang <wenji.huang@oracle.com>2009-04-22 22:44:05 -0400
commit6594f3f41e1d8d9ccb1e89d6734c0fd4da121fc0 (patch)
tree91d457ebb87f8da1253f27c1bbd4135dc15216a5 /testsuite/systemtap.base/kprobes.stp
parent6c35302ea4c7ea8157cf348329858ff93ab63a82 (diff)
downloadsystemtap-steved-6594f3f41e1d8d9ccb1e89d6734c0fd4da121fc0.tar.gz
systemtap-steved-6594f3f41e1d8d9ccb1e89d6734c0fd4da121fc0.tar.xz
systemtap-steved-6594f3f41e1d8d9ccb1e89d6734c0fd4da121fc0.zip
Modify the output of kprobes test.
* testsuite/systemtap.base/kprobes.stp: Update text.
Diffstat (limited to 'testsuite/systemtap.base/kprobes.stp')
-rw-r--r--testsuite/systemtap.base/kprobes.stp5
1 files changed, 2 insertions, 3 deletions
diff --git a/testsuite/systemtap.base/kprobes.stp b/testsuite/systemtap.base/kprobes.stp
index 62c18347..a3aad283 100644
--- a/testsuite/systemtap.base/kprobes.stp
+++ b/testsuite/systemtap.base/kprobes.stp
@@ -6,16 +6,15 @@
probe begin
{
- println("\n Systemtap starting probe");
+ println("systemtap starting probe");
}
probe kprobe.function("vfs_read")
{
- printf("\n probe point hit");
exit();
}
probe end
{
- println("\n Systemtap starting probe");
+ println("systemtap ending probe");
}