summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorfche <fche>2005-08-18 17:26:00 +0000
committerfche <fche>2005-08-18 17:26:00 +0000
commitbc8d0d95c79b6994f0829ede307d42a35caf641f (patch)
tree2d7d86c62a67193445c84272c9a5d4b09db76d63 /testsuite
parent1432e3e67446f6171baa813f2e67a9621fcbee7d (diff)
downloadsystemtap-steved-bc8d0d95c79b6994f0829ede307d42a35caf641f.tar.gz
systemtap-steved-bc8d0d95c79b6994f0829ede307d42a35caf641f.tar.xz
systemtap-steved-bc8d0d95c79b6994f0829ede307d42a35caf641f.zip
cleanup, unused
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/provok/one.stp26
1 files changed, 0 insertions, 26 deletions
diff --git a/testsuite/provok/one.stp b/testsuite/provok/one.stp
deleted file mode 100755
index e51ee28a..00000000
--- a/testsuite/provok/one.stp
+++ /dev/null
@@ -1,26 +0,0 @@
-#! stap
-
-global ar1, ar2
-
-function string (v) { return "" } # to become built-in
-
-function search (key)
-{
- if (key in ar1)
- { ar1[key] ++; return ar2[ar1[key]] }
- else
- return "no can do"
-}
-
-probe syscall("zamboni")
-{
- thread->ar2 = $tgid;
- search ($pid)
-}
-
-probe end
-{
- for (key in ar2)
- # if (key in ar2)
- printk ("this: " . string (key) . " was " . string (ar2[key]))
-}