20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
wm withdraw .
set ::eskil_testsuite 1
set instrument 1
if {$instrument} {
puts "Instrumenting"
exec ./instrument.tcl compareBlocks
source eskili.tcl
} else {
source eskil.tcl
}
puts "Running Tests"
foreach test [glob -nocomplain $testDir/*.test] {
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
wm withdraw .
set ::eskil_testsuite 1
set instrument 1
if {$instrument} {
puts "Instrumenting"
exec ./instrument.tcl compareBlocks ParseCtRevs compareFiles
source eskili.tcl
} else {
source eskil.tcl
}
puts "Running Tests"
foreach test [glob -nocomplain $testDir/*.test] {
|