diff options
author | jingham <jingham> | 1999-03-22 06:42:59 (GMT) |
---|---|---|
committer | jingham <jingham> | 1999-03-22 06:42:59 (GMT) |
commit | 8a6b34cf70ed250038f1e71af3d7b9327460d9db (patch) | |
tree | b97f7788b9708b019cbe9a3126f3572ac39302ef | |
parent | 832e1f60b6281d86dd87a4ca78c4139bfba6797c (diff) | |
download | tk-8a6b34cf70ed250038f1e71af3d7b9327460d9db.zip tk-8a6b34cf70ed250038f1e71af3d7b9327460d9db.tar.gz tk-8a6b34cf70ed250038f1e71af3d7b9327460d9db.tar.bz2 |
Don't exit on the Macintosh, since this destroys the window that contained the test results.
-rw-r--r-- | tests/all | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -2,7 +2,7 @@ # tests. Execute it by invoking "source all" when running tclTest # in this directory. # -# RCS: @(#) $Id: all,v 1.4 1998/12/07 23:29:00 hershey Exp $ +# RCS: @(#) $Id: all,v 1.4.2.1 1999/03/22 06:42:59 jingham Exp $ set TESTS_DIR [file join [pwd] [file dirname [info script]]] source [file join $TESTS_DIR defs] @@ -73,5 +73,10 @@ if {[info exists TMP_DIR]} { cd $currentDir } -catch {destroy .} -exit +# Don't exit at the end of all the tests on the Mac, since +# this destroys the window that contains the test results... + +if {[string compare $tcl_platform(platform) macintosh]} { + catch {destroy .} + exit +} |