#!/bin/sh
#----------------------------------------------------------------------
# $Revision$
#----------------------------------------------------------------------
# the next line restarts using tclsh \
exec tclsh "$0" "$@"
set testScript [file normalize [file join [pwd] [info script]]]
set testDir [file dirname $testScript]
lappend auto_path eskil.vfs/lib
package require tcltest 2.2
namespace import tcltest::*
tcltest::configure -verbose "body error" -singleproc 1
#testConstraint knownbug 1
#tcltest::configure -match print-*
if {$argc > 0} {
eval tcltest::configure $argv
}
package require Tk
wm withdraw .
set ::eskil_testsuite 1
if {[file exists eskil.vfs/src/startup.tcl_i]} {
puts "Running with code coverage"
source eskil.vfs/src/startup.tcl_i
} else {
source eskil.vfs/src/startup.tcl
}
Init
# Helpers to temporarily stub things out
set ::stubs {}
proc stub {name argv body} {
if {[info commands _stub_$name] eq ""} {
rename $name _stub_$name
}
proc $name $argv $body
lappend ::stubs $name
}
proc clearstub {} {
foreach name $::stubs {
rename $name {}
rename _stub_$name $name
}
set ::stubs {}
}
proc ExecEskil {args} {
return [exec ./eskil.kit {*}$args]
}
tcltest::testsDirectory $testDir
tcltest::runAllTests
cleanupTestFile
tcltest::cleanupTests 1
exit