Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added a call to cleanup at the end. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
33e21532d5378dd8f9123f34e401d7fb |
User & Date: | peter 2007-11-27 18:03:35.000 |
Context
2007-11-27
| ||
18:04 | Include .git in default excluded directories. check-in: 668194b3e0 user: peter tags: trunk | |
18:03 | Added a call to cleanup at the end. check-in: 33e21532d5 user: peter tags: trunk | |
18:03 | Test line numbers in PDF check-in: a00e3d71ac user: peter tags: trunk | |
Changes
Changes to tests/all.tcl.
︙ | ︙ | |||
10 11 12 13 14 15 16 | lappend auto_path eskil.vfs/lib package require tcltest 2.2 namespace import tcltest::* tcltest::configure -verbose "body error" #testConstraint knownbug 1 | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | lappend auto_path eskil.vfs/lib package require tcltest 2.2 namespace import tcltest::* tcltest::configure -verbose "body error" #testConstraint knownbug 1 #tcltest::configure -match print-* package require Tk wm withdraw . set ::eskil_testsuite 1 if {[file exists src/eskil.tcl_i]} { |
︙ | ︙ | |||
50 51 52 53 54 55 56 57 58 | puts "Running Tests" foreach test [glob -nocomplain $testDir/*.test] { source $test clearstub } exit | > | 50 51 52 53 54 55 56 57 58 59 | puts "Running Tests" foreach test [glob -nocomplain $testDir/*.test] { source $test clearstub } tcltest::cleanupTests 1 exit |