diff options
author | dsmith <dsmith> | 2006-05-25 18:43:25 +0000 |
---|---|---|
committer | dsmith <dsmith> | 2006-05-25 18:43:25 +0000 |
commit | 037c3a7751a1687ff11da746b895d951e2a062c6 (patch) | |
tree | 174265f435f1a2a04e7829cb25d8967a19e55cb4 | |
parent | 0c8218db09676f097da5a5643482b3b8a655dd80 (diff) | |
download | systemtap-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.
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | testsuite/semok/twentyone.stp | 35 |
2 files changed, 39 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2006-05-25 David Smith <dsmith@redhat.com> + + * testsuite/semok/twentyone.stp: New file. + 2006-05-24 Frank Ch. Eigler <fche@elastic.org> Pass 4 speedup. 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") } + |