summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorfche <fche>2006-06-05 19:45:56 +0000
committerfche <fche>2006-06-05 19:45:56 +0000
commita971b891bbdd51e2f1111a41ffff9dfd5e171ab4 (patch)
treec0c7d41819755dd744e7845684f56fe965373306 /testsuite
parentcedd10f4eeda74861f6ee61a50241e05eb27b500 (diff)
downloadsystemtap-steved-a971b891bbdd51e2f1111a41ffff9dfd5e171ab4.tar.gz
systemtap-steved-a971b891bbdd51e2f1111a41ffff9dfd5e171ab4.tar.xz
systemtap-steved-a971b891bbdd51e2f1111a41ffff9dfd5e171ab4.zip
2006-06-05 Frank Ch. Eigler <fche@elastic.org>
PR 2645 cont'd. * elaborate.cxx (derive_probes): Pass down optional flag from alias reference to expansion. * testsuite/semok/twentytwo.stp: Test passing-down. * stapprobes.5.in: Specify passing-down property of optional flag.
Diffstat (limited to 'testsuite')
-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 ? { }
+