diff options
Diffstat (limited to 'devel/tcl-trf/files/alltests.tcl')
-rw-r--r-- | devel/tcl-trf/files/alltests.tcl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/tcl-trf/files/alltests.tcl b/devel/tcl-trf/files/alltests.tcl new file mode 100644 index 000000000000..b94a734e1c13 --- /dev/null +++ b/devel/tcl-trf/files/alltests.tcl @@ -0,0 +1,24 @@ +package require tcltest + +source test.setup + +namespace import ::tcltest::* + +foreach c {hasZlib hasSSL hasBz} { + testConstraint $c 1 +} + +proc defblock {name hexdata} { + upvar $name x + + regsub -all { *} $hexdata {} hexdata + regsub -all "\n" $hexdata {} hexdata + # single long hex string now + + set x $hexdata +} + +configure -singleproc true -verbose bel + +testsDirectory tests +runAllTests |