summaryrefslogtreecommitdiffstats
path: root/tests/fileName.test
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2005-10-12 22:05:45 (GMT)
committerdkf <dkf@noemail.net>2005-10-12 22:05:45 (GMT)
commitf8239c681f96207c1f3894dea36e63daf37ee2ef (patch)
tree2069736e8310acbf08c84b0791afeed80adb7d09 /tests/fileName.test
parent323fca97424c70f236f00876c7e2f48faaa6f28b (diff)
downloadtcl-f8239c681f96207c1f3894dea36e63daf37ee2ef.zip
tcl-f8239c681f96207c1f3894dea36e63daf37ee2ef.tar.gz
tcl-f8239c681f96207c1f3894dea36e63daf37ee2ef.tar.bz2
Fix for [Bug 1325099]
FossilOrigin-Name: 893d9541f93ddb7e18eb7b3efea311ebea6700bf
Diffstat (limited to 'tests/fileName.test')
-rw-r--r--tests/fileName.test7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/fileName.test b/tests/fileName.test
index 979dd63..c2d870c 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.48 2005/07/28 18:42:32 dgp Exp $
+# RCS: @(#) $Id: fileName.test,v 1.49 2005/10/12 22:05:46 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -1526,6 +1526,11 @@ test fileName-18.1 {windows - split ADS name correctly} {win} {
list $x $y
} {{c:/ ./c:d} c:/c:d}
+test fileName-19.1 {ensure that [Bug 1325099] stays fixed} {
+ # Any non-crashing result is OK
+ list [file exists ~//.nonexistant_file] [file exists ~///.nonexistant_file]
+} {0 0}
+
# cleanup
catch {file delete -force C:/globTest}
cd [temporaryDirectory]