summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorfche <fche>2005-06-02 21:10:49 +0000
committerfche <fche>2005-06-02 21:10:49 +0000
commitd8e610f05aafd65e2afef59088db43a2c946680f (patch)
tree7d3d5ba6c004a5e38a78a3c8dc8c75680f39a56d /testsuite
parent3d3887df260321254f087cd87d011c9503b8bd44 (diff)
downloadsystemtap-steved-d8e610f05aafd65e2afef59088db43a2c946680f.tar.gz
systemtap-steved-d8e610f05aafd65e2afef59088db43a2c946680f.tar.xz
systemtap-steved-d8e610f05aafd65e2afef59088db43a2c946680f.zip
none
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/transok/two.stp5
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/transok/two.stp b/testsuite/transok/two.stp
new file mode 100755
index 00000000..d62e88a8
--- /dev/null
+++ b/testsuite/transok/two.stp
@@ -0,0 +1,5 @@
+#! stap
+probe k,l { 2; }
+function poo (zoo) { n = poo2 (8); return "foo" . zoo }
+function poo2 (zoo) { return poo3 (2 + 4 * zoo) }
+function poo3 (zoo) { return zoo }