diff options
author | Steve Bennett <steveb@workware.net.au> | 2016-09-16 09:08:28 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2016-09-28 10:54:03 +1000 |
commit | 2a6f4740ff77daccffc2091d0e1815a8e4fc5597 (patch) | |
tree | f929d2993376e2a9ee37e13bb756bbb6da805a43 /tests | |
parent | 02a59998a6536997e03b502cc55bc8f343c87ef2 (diff) | |
download | jimtcl-2a6f4740ff77daccffc2091d0e1815a8e4fc5597.zip jimtcl-2a6f4740ff77daccffc2091d0e1815a8e4fc5597.tar.gz jimtcl-2a6f4740ff77daccffc2091d0e1815a8e4fc5597.tar.bz2 |
tests/runall: don't abort if signal.test exits
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runall.tcl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/runall.tcl b/tests/runall.tcl index e51d520..2b1c15a 100644 --- a/tests/runall.tcl +++ b/tests/runall.tcl @@ -26,7 +26,9 @@ if {[info commands interp] eq ""} { if {$script eq "signal.test"} { # special case, can't run this in a child interpeter - source $script + catch -exit { + source $script + } foreach var {pass fail skip tests} { incr total($var) $testinfo(num$var) } |