diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-17 10:00:58 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-01-17 10:00:58 (GMT) |
commit | 592e0f1dd91bee030010bd5efb84d9f6d976f22a (patch) | |
tree | 95f33dbb886ccd342d82c9ef102e9993d41d127a /tests/tm.test | |
parent | 9dcacf853204f3d0a155842d157fe8de21d61eff (diff) | |
download | tcl-592e0f1dd91bee030010bd5efb84d9f6d976f22a.zip tcl-592e0f1dd91bee030010bd5efb84d9f6d976f22a.tar.gz tcl-592e0f1dd91bee030010bd5efb84d9f6d976f22a.tar.bz2 |
Test-cases which require Tcl 8.5 (or 8.6) should continue to work unmodified in Tcl 9.0. The "novem" branch will show whether this continues to work.
Diffstat (limited to 'tests/tm.test')
-rw-r--r-- | tests/tm.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tm.test b/tests/tm.test index 1b22f8c..567d351 100644 --- a/tests/tm.test +++ b/tests/tm.test @@ -6,7 +6,7 @@ # Copyright (c) 2004 by Donal K. Fellows. # All rights reserved. -package require Tcl 8.5 +package require Tcl 8.5- if {"::tcltest" ni [namespace children]} { package require tcltest 2 namespace import -force ::tcltest::* @@ -200,7 +200,7 @@ test tm-3.11 {tm: module path management, remove ignores unknown path} -setup { proc genpaths {base} { # Normalizing picks up drive letters on windows [Bug 1053568] set base [file normalize $base] - lassign [split [package present Tcl] .] major minor + lassign [split [package present Tcl] .] major minor set results {} set base [file join $base tcl$major] lappend results [file join $base site-tcl] |