summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-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");
}