summaryrefslogtreecommitdiffstats
path: root/tests/fileName.test
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-04-04 08:05:18 (GMT)
committerhobbs <hobbs>2000-04-04 08:05:18 (GMT)
commit8977ea94f9e8853776ebf09fe56d7be111450019 (patch)
tree00ceac2b3c276f9d6db33da471db0ee5b4fce6bb /tests/fileName.test
parent48e18ca0cc7a2edcc8320b4e33e31faaa768a64a (diff)
downloadtcl-8977ea94f9e8853776ebf09fe56d7be111450019.zip
tcl-8977ea94f9e8853776ebf09fe56d7be111450019.tar.gz
tcl-8977ea94f9e8853776ebf09fe56d7be111450019.tar.bz2
* tests/foreach.test:
* tests/namespace.test: * tests/var.test: Added lsorts to avoid random sorted return problems. [Bug: 2682]
Diffstat (limited to 'tests/fileName.test')
-rw-r--r--tests/fileName.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/fileName.test b/tests/fileName.test
index 91c5cda..989299b 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.6 1999/12/12 22:46:47 hobbs Exp $
+# RCS: @(#) $Id: fileName.test,v 1.7 2000/04/04 08:05:18 hobbs Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -1322,10 +1322,10 @@ test filename-13.22 {globbing with brace substitution} {
} {1 {unmatched open-brace in file name}}
test filename-14.1 {asterisks, question marks, and brackets} {unixOrPc} {
- lsort [glob g*/*.c]
+ lsort [glob glo*/*.c]
} {{globTest/weird name.c} globTest/x,z1.c globTest/x1.c globTest/y1.c globTest/z1.c}
test filename-14.2 {asterisks, question marks, and brackets} {macOnly} {
- lsort [glob g*/*.c]
+ lsort [glob glo*/*.c]
} {{:globTest:weird name.c} :globTest:x,z1.c :globTest:x1.c :globTest:y1.c :globTest:z1.c}
test filename-14.3 {asterisks, question marks, and brackets} {unixOrPc} {
lsort [glob globTest/?1.c]