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