diff options
author | dgp <dgp@users.sourceforge.net> | 2008-08-14 13:09:47 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-08-14 13:09:47 (GMT) |
commit | a810a762c4bddc1860b928b81b8aeefad6a4ac16 (patch) | |
tree | 2b1c142b623df254bf20b950d2809e8299a789c5 | |
parent | 9ee70ad9a7f0ed70053101eea7e8d08924f7532b (diff) | |
download | tcl-a810a762c4bddc1860b928b81b8aeefad6a4ac16.zip tcl-a810a762c4bddc1860b928b81b8aeefad6a4ac16.tar.gz tcl-a810a762c4bddc1860b928b81b8aeefad6a4ac16.tar.bz2 |
* tests/fileName.test: Revise new tests for portability to case
insensitive filesystems.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tests/fileName.test | 8 |
2 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2008-08-14 Don Porter <dgp@users.sourceforge.net> + + * tests/fileName.test: Revise new tests for portability to case + insensitive filesystems. + 2008-08-14 Daniel Steffen <das@users.sourceforge.net> * generic/tclBasic.c (TclNREvalObjv, Tcl_NRCallObjProc): DTrace probes diff --git a/tests/fileName.test b/tests/fileName.test index f0788f4..86a1b23 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.55 2008/08/13 18:14:44 dgp Exp $ +# RCS: @(#) $Id: fileName.test,v 1.56 2008/08/14 13:09:50 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -1459,7 +1459,7 @@ test fileName-20.1 {Bug 1750300} -setup { set d [makeDirectory foo] makeFile {} TAGS $d } -body { - llength [glob -nocomplain -directory $d -- TAGS tags Tags] + llength [glob -nocomplain -directory $d -- TAGS one two] } -cleanup { removeFile TAGS $d removeDirectory foo @@ -1468,7 +1468,7 @@ test fileName-20.2 {Bug 1750300} -setup { set d [makeDirectory foo] makeFile {} TAGS $d } -body { - llength [glob -nocomplain -directory $d -types {} -- TAGS tags Tags] + llength [glob -nocomplain -directory $d -types {} -- TAGS one two] } -cleanup { removeFile TAGS $d removeDirectory foo @@ -1486,7 +1486,7 @@ test fileName-20.4 {Bug 1750300} -setup { set d [makeDirectory foo] makeFile {} TAGS $d } -body { - llength [glob -nocomplain -directory $d -types {} -- URGENT Urgent] + llength [glob -nocomplain -directory $d -types {} -- URGENT Urkle] } -cleanup { removeFile TAGS $d removeDirectory foo |