diff options
author | dgp <dgp@users.sourceforge.net> | 2014-07-22 19:57:51 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-07-22 19:57:51 (GMT) |
commit | 91e311e52d7fd08f0eb70ddd211e5aa51a5e2d22 (patch) | |
tree | 2c683779abd3cb6b3805dd5ff5e9677cd55e8a52 /tests/all.tcl | |
parent | 531afdcf4e0d725402db70a2b207305dfa7f8903 (diff) | |
download | tcl-91e311e52d7fd08f0eb70ddd211e5aa51a5e2d22.zip tcl-91e311e52d7fd08f0eb70ddd211e5aa51a5e2d22.tar.gz tcl-91e311e52d7fd08f0eb70ddd211e5aa51a5e2d22.tar.bz2 |
Workaround [info frame] troubles with -singleproc 1 testing operations.
Diffstat (limited to 'tests/all.tcl')
-rw-r--r-- | tests/all.tcl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/all.tcl b/tests/all.tcl index 05d3024..0a6f57f 100644 --- a/tests/all.tcl +++ b/tests/all.tcl @@ -15,5 +15,8 @@ package require Tcl 8.5 package require tcltest 2.2 namespace import tcltest::* configure {*}$argv -testdir [file dir [info script]] +if {[singleProcess]} { + interp debug {} -frame 1 +} runAllTests proc exit args {} |