summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2009-08-18 17:41:46 (GMT)
committerdgp <dgp@users.sourceforge.net>2009-08-18 17:41:46 (GMT)
commit637ae9db9c52f12b1881443d04b3e44d91f11431 (patch)
tree12e61a0bfc4e327d95f57f10120d5bf6c5bbeace /tests
parent37c6c70523838717849f98510ccf55b258eb5c04 (diff)
downloadtcl-637ae9db9c52f12b1881443d04b3e44d91f11431.zip
tcl-637ae9db9c52f12b1881443d04b3e44d91f11431.tar.gz
tcl-637ae9db9c52f12b1881443d04b3e44d91f11431.tar.bz2
test for 2806250
Diffstat (limited to 'tests')
-rw-r--r--tests/fileName.test12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/fileName.test b/tests/fileName.test
index 71f3e6b..e4fbda8 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.30.2.13 2009/08/18 16:27:31 dgp Exp $
+# RCS: @(#) $Id: fileName.test,v 1.30.2.14 2009/08/18 17:41:46 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -2096,6 +2096,16 @@ test fileName-20.6 {Bug 2837800} -setup {
removeFile test ~
} -result {}
+test fileName-20.7 {Bug 2806250} -setup {
+ set d [makeDirectory isolate]
+ makeFile {} ./~test $d
+} -body {
+ file exists [lindex [glob -nocomplain isolate/*] 0]
+} -cleanup {
+ removeFile ./~test $d
+ removeDirectory isolate
+} -result 1
+
# cleanup
catch {file delete -force C:/globTest}
cd [temporaryDirectory]