summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/print.stp
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2007-11-04 14:11:15 -0500
committerFrank Ch. Eigler <fche@elastic.org>2007-11-04 14:11:15 -0500
commit806b26a85d30f59af7dcb0025c68a50bf4bbb352 (patch)
tree8b1cc9edab49eda46278199a7027d956549f6ddb /testsuite/systemtap.printf/print.stp
parent24993e4fcae48ca014e6b53f3f9a011c9cfa8f06 (diff)
parent600e72b28cc0676dc581b8fc5d54c09772979b79 (diff)
downloadsystemtap-steved-806b26a85d30f59af7dcb0025c68a50bf4bbb352.tar.gz
systemtap-steved-806b26a85d30f59af7dcb0025c68a50bf4bbb352.tar.xz
systemtap-steved-806b26a85d30f59af7dcb0025c68a50bf4bbb352.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.printf/print.stp')
-rw-r--r--testsuite/systemtap.printf/print.stp47
1 files changed, 47 insertions, 0 deletions
diff --git a/testsuite/systemtap.printf/print.stp b/testsuite/systemtap.printf/print.stp
new file mode 100644
index 00000000..ae770935
--- /dev/null
+++ b/testsuite/systemtap.printf/print.stp
@@ -0,0 +1,47 @@
+# test the print function with string and integers,
+# variables and constants.
+
+probe begin {
+ a = "hello"
+ b = " "
+ c = "world"
+ d = 777
+
+ # print variables
+ print(a)
+ print(b)
+ print(c)
+ print("\n")
+
+ print(d)
+ print("\n")
+
+ print(a,b,c,"\n")
+ print(a.b.c."\n")
+
+ # print literals
+ print("foo")
+ print("\n")
+
+ print("foo")
+ print("bar")
+ print("\n")
+
+ print("foo","bar","\n")
+ print("foo"."bar"."\n")
+
+ print("foo",99,"\n")
+ print(99, "foo","\n")
+
+ print(777)
+ print("\n")
+ print(888,"\n")
+
+ print(123,456,789,"\n")
+
+ # mixed
+ print(a,999,"\n")
+ print(999,a,"\n")
+
+ exit()
+}