60 lines
1.7 KiB
Tcl
60 lines
1.7 KiB
Tcl
|
# 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.
|
||
|
# All rights reserved.
|
||
|
|
||
|
package require tcltest
|
||
|
::tcltest::loadTestedCommands
|
||
|
package require Thread
|
||
|
|
||
|
set ::tcltest::testSingleFile false
|
||
|
set ::tcltest::testsDirectory [file dir [info script]]
|
||
|
|
||
|
# We need to ensure that the testsDirectory is absolute
|
||
|
::tcltest::normalizePath ::tcltest::testsDirectory
|
||
|
|
||
|
puts stdout "Tcl $tcl_patchLevel tests running in interp: [info nameofexecutable]"
|
||
|
puts stdout "Tests running in working dir: $::tcltest::testsDirectory"
|
||
|
if {[llength $::tcltest::skip] > 0} {
|
||
|
puts stdout "Skipping tests that match: $::tcltest::skip"
|
||
|
}
|
||
|
if {[llength $::tcltest::match] > 0} {
|
||
|
puts stdout "Only running tests that match: $::tcltest::match"
|
||
|
}
|
||
|
|
||
|
if {[llength $::tcltest::skipFiles] > 0} {
|
||
|
puts stdout "Skipping test files that match: $::tcltest::skipFiles"
|
||
|
}
|
||
|
if {[llength $::tcltest::matchFiles] > 0} {
|
||
|
puts stdout "Only sourcing test files that match: $::tcltest::matchFiles"
|
||
|
}
|
||
|
|
||
|
set timeCmd {clock format [clock seconds]}
|
||
|
puts stdout "Tests began at [eval $timeCmd]"
|
||
|
|
||
|
# These tests need to know which is the main thread
|
||
|
set ::tcltest::mainThread [thread::id]
|
||
|
|
||
|
puts stdout "Thread [package provide Thread]"
|
||
|
puts stdout "Mainthread id is $::tcltest::mainThread"
|
||
|
|
||
|
# Source each of the specified tests
|
||
|
foreach file [lsort [::tcltest::getMatchingFiles]] {
|
||
|
set tail [file tail $file]
|
||
|
puts stdout $tail
|
||
|
if {[catch {source $file} msg]} {
|
||
|
puts stdout $msg
|
||
|
}
|
||
|
}
|
||
|
|
||
|
# Cleanup
|
||
|
puts stdout "\nTests ended at [eval $timeCmd]"
|
||
|
::tcltest::cleanupTests 1
|
||
|
|
||
|
return
|
||
|
|