summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorhobbs <hobbs>2005-10-07 22:35:33 (GMT)
committerhobbs <hobbs>2005-10-07 22:35:33 (GMT)
commit98a6fcad96289a40b501fbd2095387a245fd804d (patch)
tree2c3ff8d55bb409730bc8811c577358f3ba743fb7 /tests
parent2a5ae89c4e4c6574518b806cb6e6586823450c5d (diff)
downloadtcl-98a6fcad96289a40b501fbd2095387a245fd804d.zip
tcl-98a6fcad96289a40b501fbd2095387a245fd804d.tar.gz
tcl-98a6fcad96289a40b501fbd2095387a245fd804d.tar.bz2
* unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change tomsofer_wcodes_branch_20051007kennykb_numerics_branch_20051008
* tests/fCmd.test (fCmd-20.2): account for NFS special files with a readdir rewind threshold. [Bug 1034337]
Diffstat (limited to 'tests')
-rw-r--r--tests/fCmd.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test
index 4ba7034..bc7b550 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.46 2005/05/10 18:35:19 kennykb Exp $
+# RCS: @(#) $Id: fCmd.test,v 1.47 2005/10/07 22:35:33 hobbs Exp $
#
if {[lsearch [namespace children] ::tcltest] == -1} {
@@ -1766,7 +1766,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