diff options
author | Wenji Huang <wenji.huang@oracle.com> | 2009-09-14 10:05:08 +0800 |
---|---|---|
committer | Wenji Huang <wenji.huang@oracle.com> | 2009-09-14 10:05:08 +0800 |
commit | 38070723b06baf781ef18e2516e33e6bdbe18d8f (patch) | |
tree | 53b7a3cf4c657d748dd224deb251bf7665460c33 /testsuite/systemtap.base | |
parent | 22ce80766c4f31a218da1694569523eb68737faf (diff) | |
download | systemtap-steved-38070723b06baf781ef18e2516e33e6bdbe18d8f.tar.gz systemtap-steved-38070723b06baf781ef18e2516e33e6bdbe18d8f.tar.xz systemtap-steved-38070723b06baf781ef18e2516e33e6bdbe18d8f.zip |
PR10608: mark test cases untested once compilation failed
* testsuite/systemtap.syscall/syscall.exp: Simplify logic things.
* testsuite/systemtap.syscall/test.tcl: Check compilation result.
* testsuite/systemtap.base/utrace_syscall_args.exp: Change fail to
untested.
Diffstat (limited to 'testsuite/systemtap.base')
-rw-r--r-- | testsuite/systemtap.base/utrace_syscall_args.exp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/systemtap.base/utrace_syscall_args.exp b/testsuite/systemtap.base/utrace_syscall_args.exp index 98bc457e..e3c90191 100644 --- a/testsuite/systemtap.base/utrace_syscall_args.exp +++ b/testsuite/systemtap.base/utrace_syscall_args.exp @@ -37,7 +37,8 @@ if {$do_64_bit_pass} { set res [target_compile $srcpath $exepath executable $flags] if { $res != "" } { verbose "target_compile for $exepath failed: $res" 2 - fail "$testname: unable to compile $srcpath" + send_log "$testname: unable to compile $srcpath\n" + untested $testname return } @@ -72,7 +73,8 @@ if {$do_32_bit_pass} { set res [target_compile $srcpath $exepath executable $flags] if { $res != "" } { verbose "target_compile for $exepath failed: $res" 2 - fail "$testname: unable to compile $srcpath" + send_log "$testname: unable to compile $srcpath\n" + untested $testname return } |