diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-09 19:58:38 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-09 19:58:38 -0400 |
commit | 5ff217f44e1e069fcfbd59c27866afef35a61c9a (patch) | |
tree | 4742387d16d27f29d107b7baa7824ca3e9d75959 /testsuite/systemtap.base/uprobes.stp | |
parent | 02a929d10b4cc68ef46d85af8d055ac0fcad3a71 (diff) | |
download | systemtap-steved-5ff217f44e1e069fcfbd59c27866afef35a61c9a.tar.gz systemtap-steved-5ff217f44e1e069fcfbd59c27866afef35a61c9a.tar.xz systemtap-steved-5ff217f44e1e069fcfbd59c27866afef35a61c9a.zip |
uprobes test case tweak
Diffstat (limited to 'testsuite/systemtap.base/uprobes.stp')
-rwxr-xr-x | testsuite/systemtap.base/uprobes.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.base/uprobes.stp b/testsuite/systemtap.base/uprobes.stp index d7efb586..8e7dbe9d 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*/) } |