summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/basic3.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.printf/basic3.stp')
-rw-r--r--testsuite/systemtap.printf/basic3.stp6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/systemtap.printf/basic3.stp b/testsuite/systemtap.printf/basic3.stp
new file mode 100644
index 00000000..23f826d6
--- /dev/null
+++ b/testsuite/systemtap.printf/basic3.stp
@@ -0,0 +1,6 @@
+probe begin
+{
+ printf("Hello\n");
+ print("World\n");
+ exit()
+}