#
# Main test suite for [incr Tcl]
# ----------------------------------------------------------------------
#   AUTHOR:  Michael J. McLennan       Phone: (215)770-2842
#            AT&T Bell Laboratories   E-mail: aluxpo!mmc@att.com
#
#     SCCS:  @(#)all	1.3 (10/14/93)
# ----------------------------------------------------------------------
#            Copyright (c) 1993  AT&T  All Rights Reserved
# ======================================================================
global TEST_ABS_TOL TEST_REL_TOL
set TEST_ABS_TOL 1.0e-6
set TEST_REL_TOL 1.0e-5

if {![file readable "testlib.tcl"]} {
	error "ERROR: execute test suite in \"tests\" directory"
}

lappend auto_path .

foreach i [lsort [glob ./*.test]] {
	source $i
}
puts stdout "== ALL TESTS SUCCESSFUL =="
exit
