diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/buildok/six.stp | 6 | ||||
-rwxr-xr-x | testsuite/parseok/five.stp | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/buildok/six.stp b/testsuite/buildok/six.stp index 589a8b44..2d9a40aa 100755 --- a/testsuite/buildok/six.stp +++ b/testsuite/buildok/six.stp @@ -4,6 +4,10 @@ # listed in PR 1155 we cannot resolve the parameters of the inline # at the moment. -probe kernel.inline("context_switch") { +probe kernel.inline("context_switch")? { log ("found an inline function") } + +probe never { + log ("or not ...") +} diff --git a/testsuite/parseok/five.stp b/testsuite/parseok/five.stp index b7690943..29ff5990 100755 --- a/testsuite/parseok/five.stp +++ b/testsuite/parseok/five.stp @@ -17,3 +17,4 @@ probe time.virtual.jiffies(100) {} probe perfcounter("tlbmiss").count(4000) {} probe resource.freemembelow(50) {} # pages? probe begin {} +probe something?, or?, nothing? {} |