diff options
author | vincentdarley <vincentdarley> | 2003-02-12 18:57:43 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-02-12 18:57:43 (GMT) |
commit | a7beeb8e861f0a22b48f42d0725bd6d1c9dc6f73 (patch) | |
tree | b100d4dd9bf3072e691813a756381ae21d9309ae /tests/fCmd.test | |
parent | b05122813d01093b2b7448f1554203b7915f0905 (diff) | |
download | tcl-a7beeb8e861f0a22b48f42d0725bd6d1c9dc6f73.zip tcl-a7beeb8e861f0a22b48f42d0725bd6d1c9dc6f73.tar.gz tcl-a7beeb8e861f0a22b48f42d0725bd6d1c9dc6f73.tar.bz2 |
glob -l on broken symlink fix
Diffstat (limited to 'tests/fCmd.test')
-rw-r--r-- | tests/fCmd.test | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test index 08ff618..e3bec24 100644 --- a/tests/fCmd.test +++ b/tests/fCmd.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: fCmd.test,v 1.25 2002/10/04 08:25:14 dkf Exp $ +# RCS: @(#) $Id: fCmd.test,v 1.26 2003/02/12 19:18:13 vincentdarley Exp $ # if {[lsearch [namespace children] ::tcltest] == -1} { @@ -69,11 +69,11 @@ proc openup {path} { } proc cleanup {args} { - if {$::tcl_platform(platform) == "macintosh"} { - set wd [list :] - } else { - set wd [list .] - } + if {$::tcl_platform(platform) == "macintosh"} { + set wd [list :] + } else { + set wd [list .] + } foreach p [concat $wd $args] { set x "" catch { |