diff options
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/semok/twentytwo.stp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/testsuite/semok/twentytwo.stp b/testsuite/semok/twentytwo.stp index f8f44ffb..b5fcb3a0 100755 --- a/testsuite/semok/twentytwo.stp +++ b/testsuite/semok/twentytwo.stp @@ -1,10 +1,15 @@ #! stap -p2 -probe foo.a = kernel.function("no_such_function")?, never { "alias a" } +probe foo.a = kernel.function("no_such_function")?, never { } probe foo.* { } -probe baz.a = kernel.function("no_such_function") { "alias a" } +probe baz.a = kernel.function("no_such_function") { } probe baz.* ? { } -probe bar = kernel.function("no_such_function") { "alias b" } +probe bar = kernel.function("no_such_function") { } probe bar ? { } + +probe bar3 = kernel.function("no_such_function") { } +probe bar2 = bar3 { } +probe bar2 ? { } + |