summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/twentyone.stp
diff options
context:
space:
mode:
authordsmith <dsmith>2006-05-25 18:43:25 +0000
committerdsmith <dsmith>2006-05-25 18:43:25 +0000
commit037c3a7751a1687ff11da746b895d951e2a062c6 (patch)
tree174265f435f1a2a04e7829cb25d8967a19e55cb4 /testsuite/semok/twentyone.stp
parent0c8218db09676f097da5a5643482b3b8a655dd80 (diff)
downloadsystemtap-steved-037c3a7751a1687ff11da746b895d951e2a062c6.tar.gz
systemtap-steved-037c3a7751a1687ff11da746b895d951e2a062c6.tar.xz
systemtap-steved-037c3a7751a1687ff11da746b895d951e2a062c6.zip
2006-05-25 David Smith <dsmith@redhat.com>
* testsuite/semok/twentyone.stp: New file.
Diffstat (limited to 'testsuite/semok/twentyone.stp')
-rwxr-xr-xtestsuite/semok/twentyone.stp35
1 files changed, 35 insertions, 0 deletions
diff --git a/testsuite/semok/twentyone.stp b/testsuite/semok/twentyone.stp
new file mode 100755
index 00000000..8e1ee0b1
--- /dev/null
+++ b/testsuite/semok/twentyone.stp
@@ -0,0 +1,35 @@
+#! stap -p2
+
+probe abcdefgabc = begin { printf("in abcdefabc\n") }
+
+probe a* { printf("in a*\n") }
+
+probe a*c { printf("in a*c\n") }
+
+probe a*ab* { printf("in a*ab*\n") }
+
+probe a*bc* { printf("in a*bc*\n") }
+
+probe ab*fg*bc { printf("in ab*fg*bc*\n") }
+
+probe ab*fg*ab* { printf("in ab*fg*ab*\n") }
+
+probe ab*fg*bc* { printf("in ab*fg*bc*\n") }
+
+
+probe *c { printf("in *c\n") }
+
+probe *abc* { printf("in *abc*\n") }
+
+probe *def* { printf("in *def*\n") }
+
+probe *bc*bc { printf("in *bc*bc\n") }
+
+probe *abc*bc { printf("in *abc*bc\n") }
+
+probe *bc*ab* { printf("in *bc*ab*\n") }
+
+probe *bc*bc* { printf("in *bc*bc*\n") }
+
+probe *bc*fg*c { printf("in *bc*fg*c\n") }
+