summaryrefslogtreecommitdiffstats
path: root/tests/all.tcl
blob: d6434fbe7587a522d9f7264ce0c5a2401dc64a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# all.tcl --
#
# This file contains a top-level script to run all of the Tcl
# tests.  Execute it by invoking "source all.test" when running tcltest
# in this directory.
#
# Copyright (c) 1998-1999 by Scriptics Corporation.
# Copyright (c) 2000 by Ajuba Solutions
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.

package prefer latest
package require Tcl 8.5-
package require tcltest 2.2
namespace import tcltest::*

apply {args {
    global auto_path
    set testsdir [file dirname [file dirname [file normalize [
	info script]/...]]]

    configure {*}$args -testdir $testsdir

    if {[singleProcess]} {
	interp debug {} -frame 1
    }

    set auto_path [lmap x $auto_path[set auto_path {}] {
	if {$x eq $testsdir} continue
	lindex $x
    }]
}} {*}$argv

runAllTests
proc exit args {}