summaryrefslogtreecommitdiffstats
path: root/tests/fCmd.test
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-10-07 22:35:02 (GMT)
committerhobbs <hobbs>2005-10-07 22:35:02 (GMT)
commitdae8beb32c6c48c608924febeac3c27ca52e9d67 (patch)
tree1f197d874c54a6b76fec21c3673615ff3afce740 /tests/fCmd.test
parentc7476f19d45e568e5d766eda62807a5017b18687 (diff)
downloadtcl-dae8beb32c6c48c608924febeac3c27ca52e9d67.zip
tcl-dae8beb32c6c48c608924febeac3c27ca52e9d67.tar.gz
tcl-dae8beb32c6c48c608924febeac3c27ca52e9d67.tar.bz2
* unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change to
* tests/fCmd.test (fCmd-20.2): account for NFS special files with a readdir rewind threshold. [Bug 1034337]
Diffstat (limited to 'tests/fCmd.test')
-rw-r--r--tests/fCmd.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test
index bb94d42..cb6d200 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.26.2.6 2004/11/25 11:31:31 rmax Exp $
+# RCS: @(#) $Id: fCmd.test,v 1.26.2.7 2005/10/07 22:35:03 hobbs Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -1833,7 +1833,7 @@ test fCmd-20.2 {TraverseUnixTree : recursive delete of large directory: Bug 1034
{unix notRoot} {
catch {file delete -force -- tfa}
file mkdir tfa
- for {set i 1} {$i <= 200} {incr i} {createfile tfa/testfile_$i}
+ for {set i 1} {$i <= 300} {incr i} {createfile tfa/testfile_$i}
set result [catch {file delete -force tfa} msg]
while {[catch {file delete -force tfa}]} {}
list $result $msg