summaryrefslogtreecommitdiffstats
path: root/tests/winFCmd.test
Commit message (Collapse)AuthorAgeFilesLines
* Improve documentation on the use of com ports (remove references to Windows ↵jan.nijtmans2014-11-131-4/+9
|\ | | | | | | | | 95, deprecate the use of postfix ':'). Allow lpt[5-9] just as com[5-9], and make sure that path normalization works as expected for ports > 4.
| * Improve documentation on the use of com ports (remove references to Windows ↵jan.nijtmans2014-11-131-4/+9
| | | | | | | | | | 95, deprecate the use of postfix ':'). Allow lpt[5-9] just as com[5-9], and make sure that path normalization works as expected for ports > 4.
| * use backslash and braces in regexpjan.nijtmans2012-07-231-1/+1
| |
| * Bug #3547593: fcmd test failures on Windows 7 WOW64jan.nijtmans2012-07-231-49/+9
| |
* | Finally, use correct octal notation which works in Tcl 9 as well.jan.nijtmans2014-07-171-11/+11
| |
* | Make sure that all "testchmod" arguments start with '0', making it more ↵jan.nijtmans2014-07-171-23/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | obvious that the value is octal. dgp: Isn't the better way to make it obvious the values are octal to use the explicit octal notation? For example, [testchmod 0o777 $path] ? Really seems like a bad idea to me to introduce *more* incompatibilities for the planned conversion for having the value 0777 stop meaning 255 and start meaning 777 in Tcl 9. Answer (Jan). You guessed exactly what's my follow-up plan. This was an intermediate step which keeps all test-cases running.
* | Start working on [3389978]. Appears to work, but some clean-up needed.jan.nijtmans2014-05-061-2/+2
| |
* | Remove all win95-specific test-cases, since Windows 95 is not supported any ↵jan.nijtmans2014-04-171-94/+2
| | | | | | | | more.
* | No longer build tcltest.exe to run the tests,but use tclsh86.exe in ↵jan.nijtmans2012-07-291-0/+3
| | | | | | | | combination with tcltest86.dll to do that (Windows only)
* | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-3/+0
|\ \ | |/ | | cause more harm than good. Purged them (except in zlib files).
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-3/+0
| |\ | | | | | | more harm than good. Purged them.
| | * 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-15/+64
| | | | | | | | | | | | | | | These test failures are due to the more restrictive permissions on the newer versions of Windows.
| | * backport of file writable fixesvincentdarley2006-03-191-5/+5
| | |
| | * more tests and a fix to bug 1158199vincentdarley2005-03-151-1/+9
| | |
| | * fix to file norm, file pathtype on windows reserved filenamesvincentdarley2005-03-151-1/+49
| | |
| | * fix to drive-sensitivity of testvincentdarley2005-01-171-3/+5
| | |
| | * * tests/winFCmd.test: Correct test for the presence of a CD-ROM so Kevin B Kenny2004-05-251-13/+4
| | | | | | | | | | | | | | | | | | that it doesn't misdetect some other sort of filesystem with a write-protected root as being a CD-ROM drive. [Bug 918267]
| | * * generic/tclIOUtil.c (Tcl_FSChdir): Work-around crash conditionhobbs2004-05-041-1/+10
| | | | | | | | | | | | | | | * tests/winFCmd.test (winFCmd-16.12): triggered when $HOME is volumerelative (ie 'C:').
| | * * tests/windFCmd.test (winFCmd-16.10): Corrected failure todgp2003-11-211-1/+2
| | | | | | | | | | | | initialize variable $dd that caused test suite failure.
| | * fix to 'cd' infinite recursion bug on Windowsvincentdarley2003-11-201-5/+13
| | |
| | * new tests for reported problems, fixes to followvincentdarley2003-10-031-3/+43
| | |
| * | Fixed a number of test issues for Vista and Win7.patthoyts2009-11-111-15/+64
| | | | | | | | | | | | | | | These test failures are due to the more restrictive permissions on the newer versions of Windows.
* | | Cleanup directories that have been set chmod 000.patthoyts2009-11-101-10/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | On Windows7 and Vista we really have no access and these were getting left behind. A few tests were changed to reflect the intent of the test where setting a directory chmod 000 should prevent any modification. This restriction was ignored on XP but is honoured on Vista
* | | Fixed up some erroneous tests that are failing on Vista/Server2008 systemspatthoyts2008-10-061-6/+12
| | |
* | | Added test for file rename with inode collision on windowspatthoyts2008-07-211-1/+39
| | |
* | | Test improvements (tcltest2, clarify)dkf2008-04-101-557/+776
|/ /
* | Bug #1479814. Handle extended paths on Windows NT and above.patthoyts2007-02-201-1/+81
| |
* | * doc/ParseCmd.3, doc/Tcl.n, doc/eval.n, doc/exec.n:hobbs2006-11-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/fconfigure.n, doc/interp.n, doc/unknown.n: * library/auto.tcl, library/init.tcl, library/package.tcl: * library/safe.tcl, library/tm.tcl, library/msgcat/msgcat.tcl: * tests/all.tcl, tests/basic.test, tests/cmdInfo.test: * tests/compile.test, tests/encoding.test, tests/execute.test: * tests/fCmd.test, tests/http.test, tests/init.test: * tests/interp.test, tests/io.test, tests/ioUtil.test: * tests/iogt.test, tests/namespace-old.test, tests/namespace.test: * tests/parse.test, tests/pkg.test, tests/pkgMkIndex.test: * tests/proc.test, tests/reg.test, tests/trace.test: * tests/upvar.test, tests/winConsole.test, tests/winFCmd.test: * tools/tclZIC.tcl: * generic/tclParse.c (Tcl_ParseCommand): Replace {expand} with {*} officially (TIP #293). Leave -DALLOW_EXPAND=0|1 option to keep {expand} syntax for transition users. [Bug 1589629]
* | Clean up tests (mostly constraints relating to testchmod)dkf2006-03-201-160/+155
| | | | | | | | | | Also make the format of the ChangeLog a bit more internally consistent, making it easier to search it for bug numbers, etc.
* | fix to file writeable on windowsvincentdarley2006-03-181-5/+5
| |
* | Merged kennykb-numerics-branch back to the head; TIPs 132 and 232Kevin B Kenny2005-05-101-1/+1
| |
* | more tests and a fix to bug 1158199vincentdarley2005-03-151-1/+9
| |
* | fix to file norm, file pathtype on windows reserved filenamesvincentdarley2005-03-151-1/+50
| |
* | filesystem generic/platform code splittingvincentdarley2004-10-071-8/+41
| |
* | fix to small filesystem bugsvincentdarley2004-09-271-1/+21
| |
* | * tests/winFCmd.test: Added a cleanup to winFCmd-16.11 to avoid apatthoyts2004-06-231-3/+6
| | | | | | | | failure in 16.12.
* | Standardize some use of test constraints onto names that are documenteddkf2004-06-231-165/+165
| |
* | Fixed constraint name and whitespace usagedkf2004-06-231-25/+19
| |
* | * tests/winFCmd.test (winFCmd-16.12): Changed test toKevin B Kenny2004-06-181-10/+29
| | | | | | | | | | compute the target directory, so as not to fail if the user's HOME isn't the root.
* | * tests/winFCmd.test: Correct test for the presence of a CD-ROM so Kevin B Kenny2004-05-251-15/+6
| | | | | | | | | | | | that it doesn't misdetect some other sort of filesystem with a write-protected root as being a CD-ROM drive. [Bug 918267]
* | Massive test cleanup; all tests are run, and constraints are used where ↵dkf2004-05-191-8/+11
| | | | | | | | necessary.
* | * tests/winFCmd.test (winFCmd-16.12): test volumerelative $HOMEhobbs2004-05-041-1/+10
| |
* | filesystem optimisation -- Three main issues accomplished: (1) cleaned up ↵vincentdarley2004-01-211-2/+2
| | | | | | | | variable names in
* | NT file permissions fix and testsvincentdarley2003-12-091-2/+2
| |
* | * tests/winFCmd.test (winFCmd-16.10,11): Merged new tests fromdgp2003-11-211-5/+14
| | | | | | | | core-8-4-branch.
* | * doc/ParseCmd.3: Implementation of TIP 157. Adds recognitiondgp2003-11-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/Tcl.n: of the new leading {expand} syntax on words. * generic/tcl.h: Parses such words as the new Tcl_Token type * generic/tclBasic.c: TCL_TOKEN_EXPAND_WORD. Updated Tcl_EvalEx * generic/tclCompile.c: and the bytecode compiler/execution engine * generic/tclCompile.h: to recognize the new token type. New opcodes * generic/tclExecute.c: INST_LIST_VERIFY and INST_INVOKE_EXP and a new * generic/tclParse.c: operand type OPERAND_ULIST1 are defined. Docs * generic/tclTest.c: and tests are included. * tests/basic.test: * tests/compile.test: * tests/parse.test: * library/auto.tcl: Replaced several [eval]s used to perform * library/package.tcl: argument expansion with the new syntax. * library/safe.tcl: In the test files lindex.test and lset.test, * tests/cmdInfo.test: replaced use of [eval] to force direct * tests/encoding.test: string evaluation with use of [testevalex] * tests/execute.test: which more directly and robustly serves the * tests/fCmd.test: same purpose. * tests/http.test: * tests/init.test: * tests/interp.test: * tests/io.test: * tests/ioUtil.test: * tests/iogt.test: * tests/lindex.test: * tests/lset.test: * tests/namespace-old.test: * tests/namespace.test: * tests/pkg.test: * tests/pkgMkIndex.test: * tests/proc.test: * tests/reg.test: * tests/trace.test: * tests/upvar.test: * tests/winConsole.test: * tests/winFCmd.test:
* | minor filesystem bug fixesvincentdarley2003-09-161-3/+43
| |
* | winFCmd.test fixvincentdarley2003-07-081-6/+20
|/
* [file exist] -> [file exists]...dkf2002-10-041-5/+5
|