summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/hello2.stp
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2007-11-09 13:33:35 -0500
committerFrank Ch. Eigler <fche@elastic.org>2007-11-09 13:33:35 -0500
commit5c2ebe0293f9fee77404d587a264b7c90fd8712a (patch)
tree667dc956901aa44b59cd87adc4ad688a71b3cdfb /testsuite/systemtap.printf/hello2.stp
parent0919e9e340e5d93fcc7f07043e88c9a8659371a3 (diff)
parent185457afd0b9b00f835e2bedcd6801aae432b699 (diff)
downloadsystemtap-steved-5c2ebe0293f9fee77404d587a264b7c90fd8712a.tar.gz
systemtap-steved-5c2ebe0293f9fee77404d587a264b7c90fd8712a.tar.xz
systemtap-steved-5c2ebe0293f9fee77404d587a264b7c90fd8712a.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.printf/hello2.stp')
-rw-r--r--testsuite/systemtap.printf/hello2.stp7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/systemtap.printf/hello2.stp b/testsuite/systemtap.printf/hello2.stp
new file mode 100644
index 00000000..aa0798fa
--- /dev/null
+++ b/testsuite/systemtap.printf/hello2.stp
@@ -0,0 +1,7 @@
+probe begin
+{
+ print("Print");
+ log("Systemtap");
+ warn("warning");
+ exit()
+}