summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/basic6.stp
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2009-04-20 13:55:45 -0500
committerDavid Smith <dsmith@redhat.com>2009-04-20 13:55:45 -0500
commitd1b6c2866b35575219fb36fa2307c9f87e876750 (patch)
tree4cc6d22bb879f302259074da840c279ee0b3c185 /testsuite/systemtap.printf/basic6.stp
parentcfee927fb9fc96fa06c55219abce6349a15d47e6 (diff)
parent555b11c26094bafa5e450d8ad70b72a8fcbea10f (diff)
downloadsystemtap-steved-d1b6c2866b35575219fb36fa2307c9f87e876750.tar.gz
systemtap-steved-d1b6c2866b35575219fb36fa2307c9f87e876750.tar.xz
systemtap-steved-d1b6c2866b35575219fb36fa2307c9f87e876750.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.printf/basic6.stp')
-rw-r--r--testsuite/systemtap.printf/basic6.stp5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/systemtap.printf/basic6.stp b/testsuite/systemtap.printf/basic6.stp
new file mode 100644
index 00000000..69721188
--- /dev/null
+++ b/testsuite/systemtap.printf/basic6.stp
@@ -0,0 +1,5 @@
+probe begin
+{
+ printf("Hello%%World");
+ exit()
+}