17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#tcltest::configure -match print-*
package require Tk
wm withdraw .
set ::eskil_testsuite 1
if {[file exists src/eskil.tcl_i]} {
puts "Running with code coverage"
source src/eskil.tcl_i
} else {
source src/eskil.tcl
}
Init
# Helpers to temporarily stub things out
set ::stubs {}
proc stub {name argv body} {
if {[info commands _stub_$name] eq ""} {
|
|
|
|
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#tcltest::configure -match print-*
package require Tk
wm withdraw .
set ::eskil_testsuite 1
if {[file exists eskil.vfs/src/eskil.tcl_i]} {
puts "Running with code coverage"
source eskil.vfs/src/eskil.tcl_i
} else {
source eskil.vfs/src/eskil.tcl
}
Init
# Helpers to temporarily stub things out
set ::stubs {}
proc stub {name argv body} {
if {[info commands _stub_$name] eq ""} {
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
foreach name $::stubs {
rename $name {}
rename _stub_$name $name
}
set ::stubs {}
}
puts "Running Tests"
foreach test [glob -nocomplain $testDir/*.test] {
source $test
clearstub
}
tcltest::cleanupTests 1
exit
|
>
>
>
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
foreach name $::stubs {
rename $name {}
rename _stub_$name $name
}
set ::stubs {}
}
proc ExecEskil {args} {
return [exec ./eskil.kit {*}$args]
}
puts "Running Tests"
foreach test [glob -nocomplain $testDir/*.test] {
source $test
clearstub
}
tcltest::cleanupTests 1
exit
|