diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-12 17:14:18 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-12 17:14:49 -0400 |
commit | 8b524b8e33e94007b15f33546819056b56435cf2 (patch) | |
tree | 17c4162f8df191135c19f3e8a81944f3bb9a069e /testsuite/systemtap.base | |
parent | fe57f50ecce38860af69827f1525c012840464ab (diff) | |
download | systemtap-steved-8b524b8e33e94007b15f33546819056b56435cf2.tar.gz systemtap-steved-8b524b8e33e94007b15f33546819056b56435cf2.tar.xz systemtap-steved-8b524b8e33e94007b15f33546819056b56435cf2.zip |
testsuite tweaks for rhel5
Diffstat (limited to 'testsuite/systemtap.base')
-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 32bc1a70..b609f3a1 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 { printf("%s %s\n",pp(),$$parms) } +probe process("./jennie").function("main").return { printf("%s %s\n",pp(),$$return) } |