From 98f007e6f2c276b1e2faaca1bd7a2460cec17c3a Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sat, 6 Sep 2008 10:53:19 -0400 Subject: PR6871: temporarily weaken the uprobe test since $$parms are unreliable --- testsuite/systemtap.base/uprobes.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'testsuite/systemtap.base') diff --git a/testsuite/systemtap.base/uprobes.stp b/testsuite/systemtap.base/uprobes.stp index 957cbe16..d7efb586 100755 --- a/testsuite/systemtap.base/uprobes.stp +++ b/testsuite/systemtap.base/uprobes.stp @@ -1,3 +1,3 @@ #! stap -p4 -probe process("./jennie").function("main").call { log (pp() . " " . $$parms) } -probe process("./jennie").function("main").return { log (pp() . " " . $$return) } +probe process("./jennie").function("main").call { log(pp()." "/*.$$parms*/) } +probe process("./jennie").function("main").return { log(pp()." "/*.$$return*/) } -- cgit