summaryrefslogtreecommitdiffstats
path: root/tests/fCmd.test
Commit message (Collapse)AuthorAgeFilesLines
* More complete purge of things only present for supporting long-dead Mac 9 ↵dgp2012-11-151-46/+9
| | | | systems.
* Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-3/+0
| | | more harm than good. Purged them.
* Fixed a number of test issues for Vista and Win7.patthoyts2009-11-101-7/+24
| | | | | These test failures are due to the more restrictive permissions on the newer versions of Windows.
* * tests/fCmd.test: Backport the notNetworkFilesystem constraint.dgp2007-05-171-6/+7
|
* backport of file writable fixesvincentdarley2006-03-191-3/+32
|
* * unix/tclUnixFCmd.c (TraverseUnixTree): Adjust 2004-11-11 change tohobbs2005-10-071-2/+2
| | | | | * tests/fCmd.test (fCmd-20.2): account for NFS special files with a readdir rewind threshold. [Bug 1034337]
* * tests/tcltest.test: The order in which [glob] returns the file namesrmax2004-11-251-3/+3
| | | | * tests/fCmd.test: is undefined, so tests should not depend on it.
* * tests/fCmd.test:das2004-11-111-1/+10
| | | | | | | | | * unix/tclUnixFCmd.c (TraverseUnixTree): added option to rewind() the readdir() loop whenever the source hierarchy has been modified by traverseProc (e.g. by deleting files); this is required to ensure complete traversal of the source hierarchy on certain filesystems like HFS+. Added test for failing recursive delete on Mac OS X that was due to this. [Bug 1034337]
* * tests/fCmd.test: Run tests with the [temporaryDirectory] asdgp2003-10-071-1/+4
| | | | | the current directory, so that tests can depend on ability to write files. [Bug 575837]
* * tests/fCmd.test (fCmd-8.2): Test only that tilde-substitutiondgp2003-10-061-5/+4
| | | | | | | happens, not for any particular result. [Bug 685991] * unix/tcl.m4 (SC_PATH_TCLCONFIG): Corrected search path so that alpha and beta releases of Tcl are not favored. [Bug 608698]
* file copy empty filename bug fixvincentdarley2003-06-231-1/+11
|
* filesystem fixes backportedvincentdarley2003-04-141-1/+6
|
* glob -l on broken symlink fixvincentdarley2003-02-121-6/+6
|
* [file exist] -> [file exists]...dkf2002-10-041-13/+13
|
* Added test.dkf2002-08-161-1/+5
|
* [Patch #591647] (darley)hobbs2002-08-081-5/+34
| | | | | | (CopyRenameOneFile): this is currently disabled by default until further issues with such behavior (like relative links) can be handled correctly.
* * tests/fCmd.test:hobbs2002-08-081-12/+13
| | | | | | | | | * tests/unixFCmd.test: updated tests for new link copy behavior. * generic/tclFCmd.c (CopyRenameOneFile): changed the behavior to follow links to endpoints and copy that file/directory instead of just copying the surface link. This means that trying to copy a link that has no endpoint (danling link) is an error. [Patch #591647] (darley)
* pcOnly constraints addedvincentdarley2002-07-181-2/+2
|
* Removed [exec] of Unix utilities with equivs in standard Tcl [Bug 579268]dkf2002-07-101-69/+57
|
* add file link constraintvincentdarley2002-07-081-7/+5
|
* clearer error msgs for file linkvincentdarley2002-07-021-3/+3
|
* * tests/pkg/samename.tcl: restored. needed by pkgMkIndex.test.dgp2002-07-011-14/+60
| | | | | * library/tcltest/tcltest.tcl: restored writeability testing of -tmpdir, augmented by a special exception for the deafault value.
* * Updated the instructions on running and adding to the test suite.dgp2002-07-011-3/+8
| | | | | Also updated several tests, mostly to correctly create and destroy any temporary files in the [temporaryDirectory] of tcltest.
* * Corrections to tcltest and the Tcl test suite so that a testdgp2002-06-221-5/+5
| | | | | | | with options -constraints knownBug -limitConstraints 1 only tests the knownBug tests. Mostly involves replacing direct access to the testConstraints array with calls to the testConstraint command (which requires tcltest version 2).
* tip99vincentdarley2002-06-211-48/+79
|
* new fCmd.test problems on Unixvincentdarley2002-06-131-12/+12
|
* vfs, winfs testsuitevincentdarley2002-06-131-1/+103
|
* minor fs, vfs fixesvincentdarley2001-09-041-2/+19
|
* Changes from TIP#17 "Redo Tcl's filesystem"vincentdarley2001-07-311-47/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following files were impacted. * doc/Access.3: * doc/FileSystem.3: * doc/OpenFileChnl.3: * doc/file.n: * doc/glob.n: * generic/tcl.decls: * generic/tcl.h: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclDate.c: * generic/tclDecls.h: * generic/tclEncoding.c: * generic/tclFCmd.c: * generic/tclFileName.c: * generic/tclGetDate.y: * generic/tclIO.c: * generic/tclIOCmd.c: * generic/tclIOUtil.c: * generic/tclInt.decls: * generic/tclInt.h: * generic/tclIntDecls.h: * generic/tclLoad.c: * generic/tclStubInit.c: * generic/tclTest.c: * generic/tclUtil.c: * library/init.tcl: * mac/tclMacFCmd.c: * mac/tclMacFile.c: * mac/tclMacInit.c: * mac/tclMacPort.h: * mac/tclMacResource.c: * mac/tclMacTime.c: * tests/cmdAH.test: * tests/event.test: * tests/fCmd.test: * tests/fileName.test: * tests/io.test: * tests/ioCmd.test: * tests/proc-old.test: * tests/registry.test: * tests/unixFCmd.test: * tests/winDde.test: * tests/winFCmd.test: * unix/mkLinks: * unix/tclUnixFCmd.c: * unix/tclUnixFile.c: * unix/tclUnixInit.c: * unix/tclUnixPipe.c: * win/tclWinFCmd.c: * win/tclWinFile.c: * win/tclWinInit.c: * win/tclWinPipe.c
* * tests/fCmd.test (fCmd-6.20): corrected test to removehobbs2000-09-291-3/+4
| | | | | | | c:/tcl8975@ after creating it. * tests/fileName.test: cleaned up the testing of glob patterns for c:/globTest (Windows) to directly create/remove directory.
* * tests/*.test: Changed all occurances of "namespace importericm2000-04-101-2/+2
| | | | ::tcltest" to "namespace import -force ::tcltest" [Bug: 3948].
* * tests/fCmd.test: marked test 8.1 knownBug because it ishobbs2000-04-081-12/+17
| | | | | dangerous on poorly configured systems [Bug: 3881] and added 8.2 to keep essence of 8.1 tested.
* Changed the tests to use the testConstraints array that thejenn1999-07-011-10/+10
| | | | test harness uses instead of the old name (testConfig).
* Modified the tests to use the package tcltestjenn1999-06-261-2/+3
|
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-246/+302
|
* Updated all and defs to work more smoothly with nightly tests.hershey1998-12-041-1/+7
| | | | | Check for existence of "testgetplatform" command before calling it in fCmd.test file--this command is only in tcltest interps.
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-03-261-0/+2102