diff options
author | hiramatu <hiramatu> | 2008-02-06 17:30:41 +0000 |
---|---|---|
committer | hiramatu <hiramatu> | 2008-02-06 17:30:41 +0000 |
commit | 3f545051d7334d4afcc95cca9f9de33a07462f44 (patch) | |
tree | e3e1421c5ebbf64e1c37c8792bae9b7c27055720 /testsuite/systemtap.printf/out2b.exp | |
parent | 61e4ec4c74b7571ade18f93c5afdd40ac3d124af (diff) | |
download | systemtap-steved-3f545051d7334d4afcc95cca9f9de33a07462f44.tar.gz systemtap-steved-3f545051d7334d4afcc95cca9f9de33a07462f44.tar.xz systemtap-steved-3f545051d7334d4afcc95cca9f9de33a07462f44.zip |
2008-02-06 Masami Hiramatsu <mhiramat@redhat.com>
* systemtap.base/procfs.exp: Added PROCFS.ko cleanup.
* systemtap.context/context.exp: Added cleanup call.
* systemtap.printf/end1b.exp: Passed evaluated command string to
as_root.
* systemtap.printf/mixed_outb.exp: Ditto.
* systemtap.printf/out1b.exp: Ditto.
* systemtap.printf/out2b.exp: Ditto.
* systemtap.printf/out3b.exp: Ditto.
Diffstat (limited to 'testsuite/systemtap.printf/out2b.exp')
-rw-r--r-- | testsuite/systemtap.printf/out2b.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/systemtap.printf/out2b.exp b/testsuite/systemtap.printf/out2b.exp index 883deedc..fc3301ab 100644 --- a/testsuite/systemtap.printf/out2b.exp +++ b/testsuite/systemtap.printf/out2b.exp @@ -18,24 +18,24 @@ if {[catch {exec mktemp -t staptestXXXXX} tmpfile]} { if {[catch {exec stap -b -o $tmpfile $test} res]} { untested $TEST_NAME puts "stap failed: $res" - as_root {/bin/rm -f [glob ${tmpfile}*]} + as_root "/bin/rm -f [glob ${tmpfile}*]" return } if {[catch {eval [list exec $stap_merge_path -o $tmpfile] [glob "${tmpfile}_*"]} res]} { puts "merge failed: $res" fail "$TEST_NAME failed" - as_root {/bin/rm -f [glob ${tmpfile}*]} + as_root "/bin/rm -f [glob ${tmpfile}*]" return } if {[catch {exec cmp $tmpfile $srcdir/$subdir/large_output} res]} { puts "$res" fail "$TEST_NAME failed" - as_root {/bin/rm -f [glob ${tmpfile}*]} + as_root "/bin/rm -f [glob ${tmpfile}*]" return } pass "$TEST_NAME passed" -as_root {/bin/rm -f [glob ${tmpfile}*]} +as_root "/bin/rm -f [glob ${tmpfile}*]" |