summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/twentytwo.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/semok/twentytwo.stp')
-rwxr-xr-xtestsuite/semok/twentytwo.stp11
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 ? { }
+