sl@0: # all.tcl --
sl@0: #
sl@0: # This file contains a top-level script to run all of the Tcl
sl@0: # tests.  Execute it by invoking "source all.test" when running tcltest
sl@0: # in this directory.
sl@0: #
sl@0: # Copyright (c) 1998-1999 by Scriptics Corporation.
sl@0: # Copyright (c) 2000 by Ajuba Solutions
sl@0: #
sl@0: # See the file "license.terms" for information on usage and redistribution
sl@0: # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
sl@0: # 
sl@0: # RCS: @(#) $Id: all.tcl,v 1.16 2002/04/10 19:57:15 hobbs Exp $
sl@0: 
sl@0: set tcltestVersion [package require tcltest]
sl@0: namespace import -force tcltest::*
sl@0: 
sl@0: if {$tcl_platform(platform) == "macintosh"} {
sl@0: 	tcltest::singleProcess 1
sl@0: }
sl@0: 
sl@0: tcltest::testsDirectory [file dir [info script]]
sl@0: tcltest::runAllTests
sl@0: 
sl@0: return