diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-28 18:42:28 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-28 18:42:28 (GMT) |
commit | cb789f51b77dd4702d548d9aa828a757472b725a (patch) | |
tree | 85f757e2612f551d93a44ffbca41b861711fe9b2 /tests/fileName.test | |
parent | 97b69e6ac0b3bfe72f1e3e4a490af5a45fb22776 (diff) | |
download | tcl-cb789f51b77dd4702d548d9aa828a757472b725a.zip tcl-cb789f51b77dd4702d548d9aa828a757472b725a.tar.gz tcl-cb789f51b77dd4702d548d9aa828a757472b725a.tar.bz2 |
* tests/compExpr-old.test: Still more conversion of "nonPortable"
* tests/error.test: tests into tests with constraints that
* tests/expr-old.test: describe the limits of their
* tests/expr.test: portability. Also more consolidation
* tests/fileName.test: of constraint synonyms.
* tests/format.test: wideis64bit, 64bitInts => wideIs64bit
* tests/get.test: wideIntegerUnparsed => wideIs32bit
* tests/load.test: wideIntExpressions => wideBiggerThanInt
* tests/obj.test:
* tests/parseExpr.test: Dropped "roundOffBug" constraint that
* tests/string.test: protected from buggy sprintf.
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index 5768aac..979dd63 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: fileName.test,v 1.47 2005/07/27 18:12:42 dgp Exp $ +# RCS: @(#) $Id: fileName.test,v 1.48 2005/07/28 18:42:32 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -666,11 +666,11 @@ if {[testConstraint testsetplatform]} { testsetplatform $platform } -test filename-10.23 {Tcl_TranslateFileName} {unix nonPortable} { +test filename-10.23 {Tcl_TranslateFileName} {nonPortable} { # this test fails if ~ouster is not /home/ouster list [catch {testtranslatefilename ~ouster} msg] $msg } {0 /home/ouster} -test filename-10.24 {Tcl_TranslateFileName} {unix nonPortable} { +test filename-10.24 {Tcl_TranslateFileName} {nonPortable} { # this test fails if ~ouster is not /home/ouster list [catch {testtranslatefilename ~ouster/foo} msg] $msg } {0 /home/ouster/foo} |