diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-11 16:23:16 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-11 16:23:16 -0400 |
commit | 5249b0e41d82bf0ad175662637101cc925de7ba2 (patch) | |
tree | d74a77c81e4b3bdf6b22b5ea08e0fa257ffaed5f /testsuite/systemtap.base/uprobes.stp | |
parent | 35dc8b0471eb566a2e15a1ed24e9ad26362cf6b1 (diff) | |
download | systemtap-steved-5249b0e41d82bf0ad175662637101cc925de7ba2.tar.gz systemtap-steved-5249b0e41d82bf0ad175662637101cc925de7ba2.tar.xz systemtap-steved-5249b0e41d82bf0ad175662637101cc925de7ba2.zip |
PR6871: test case
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 8e7dbe9d..32bc1a70 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) } |