diff options
author | hunt <hunt> | 2007-07-03 21:38:40 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-07-03 21:38:40 +0000 |
commit | d1cd4267e903d8bb0190e96e572ed42fcd0b25d1 (patch) | |
tree | 2cace504d870b54c24036001743847985a2fd125 /testsuite/systemtap.context/args.stp | |
parent | 9c94117be7020cbd66563e49ca22e8680145a90a (diff) | |
download | systemtap-steved-d1cd4267e903d8bb0190e96e572ed42fcd0b25d1.tar.gz systemtap-steved-d1cd4267e903d8bb0190e96e572ed42fcd0b25d1.tar.xz systemtap-steved-d1cd4267e903d8bb0190e96e572ed42fcd0b25d1.zip |
2007-07-03 Martin Hunt <hunt@redhat.com>
* systemtap.context/pid.tcl: Better error reporting.
* systemtap.context/args.*: Ditto.
* systemtap.context/context.exp: Build in temp dir.
Diffstat (limited to 'testsuite/systemtap.context/args.stp')
-rw-r--r-- | testsuite/systemtap.context/args.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.context/args.stp b/testsuite/systemtap.context/args.stp index 5d5208a2..e6cf9e92 100644 --- a/testsuite/systemtap.context/args.stp +++ b/testsuite/systemtap.context/args.stp @@ -23,10 +23,10 @@ probe module("systemtap_test_module2").function("yyy_int64").return { printf("yyy_int64 returns %d\n", $return) } probe module("systemtap_test_module2").function("yyy_char") { - printf("yyy_char %d %d %d\n", $a, $b, $c) + printf("yyy_char %1b %1b %1b\n", $a, $b, $c) } probe module("systemtap_test_module2").function("yyy_char").return { - printf("yyy_char returns %d\n", $return) + printf("yyy_char returns %1b\n", $return) } probe module("systemtap_test_module2").function("yyy_str") { printf("yyy_str %s-%s-%s\n", kernel_string($a), kernel_string($b), kernel_string($c)) |