diff options
author | Dave Brolley <brolley@redhat.com> | 2009-05-06 11:19:32 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-05-06 11:19:32 -0400 |
commit | 07e1c7c9f0c0244530d4cb1f4a876355df1a2aec (patch) | |
tree | 5743d35c33a0fb9615b0c560c57229d1ace7eade /testsuite/systemtap.base/optionalprobe.stp | |
parent | aa4d7d17299550b06c33f386d2c5715f8250879f (diff) | |
parent | ccf8bc85c08ba5602288caeb5062b3bf049a6960 (diff) | |
download | systemtap-steved-07e1c7c9f0c0244530d4cb1f4a876355df1a2aec.tar.gz systemtap-steved-07e1c7c9f0c0244530d4cb1f4a876355df1a2aec.tar.xz systemtap-steved-07e1c7c9f0c0244530d4cb1f4a876355df1a2aec.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.base/optionalprobe.stp')
-rw-r--r-- | testsuite/systemtap.base/optionalprobe.stp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/testsuite/systemtap.base/optionalprobe.stp b/testsuite/systemtap.base/optionalprobe.stp index 239cf6e3..13918cee 100644 --- a/testsuite/systemtap.base/optionalprobe.stp +++ b/testsuite/systemtap.base/optionalprobe.stp @@ -2,5 +2,13 @@ # test optional probe -probe foo ?, bar !, foo* ?, bar* !, begin { +probe foo ?, + process("/do/not/exist").function("main") !, + kernel.mark("no such mark") ?, + kernel.trace("no trace") !, + process.foo ?, + kernel.statement("no statement") !, + module("no mod").function("*") ?, + kernel.function("no such func*") !, + begin { } |