From 037c3a7751a1687ff11da746b895d951e2a062c6 Mon Sep 17 00:00:00 2001 From: dsmith Date: Thu, 25 May 2006 18:43:25 +0000 Subject: 2006-05-25 David Smith * testsuite/semok/twentyone.stp: New file. --- testsuite/semok/twentyone.stp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 testsuite/semok/twentyone.stp (limited to 'testsuite/semok/twentyone.stp') 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") } + -- cgit