summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* backport of BuildCommandLine changes to mirror msvcrt's parse_cmdline() ↵davygrvy2004-02-251-5/+115
| | | | rules of quoting
* add constraints to unixInit-7.1hobbs2004-02-181-2/+4
|
* * tests/unixInit.test: unixInit-7.1hobbs2004-02-171-1/+14
| | | | | * unix/tclUnixInit.c (TclpInitPlatform): ensure the std fds exist to prevent crash condition [Bug #772288]
* Stop losing references when variables are repeated in [binary scan]. [851747]dkf2003-12-021-1/+9
|
* * 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
|
* * generic/regcomp.c: Backported regexp bug fixes and tests. Thanksdgp2003-11-171-1/+136
| | | | | * generic/tclTest.c: to Pavel Goran and Vince Darley. * tests/reg.test: [Bugs 230589, 504785, 505048, 703709, 840258]
* * tests/cmdMZ.test (cmdMZ-1.4): change to nonPortable as morehobbs2003-11-121-7/+5
| | | | | systems are using permissions caching, and this isn't really a Tcl controlled issue.
* * tests/unixInit.test (unixInit-2.10): re-enabled.dgp2003-11-101-2/+2
| | | | | | * unix/tclUnixInit.c (TclpInitLibraryPath): Alternative fix * win/tclWinInit.c (TclpInitLibraryPath): for [Bug 832657] that should not run afoul of startup constraints.
* * tests/unixInit.test (unixInit-2.10): mark as knownBughobbs2003-11-061-4/+4
| | | | | | * generic/tclEncoding.c (TclFindEncodings): revert patch from 2003-11-05. It wasn't valid in the sensitive startup init phase and broke Windows from working at all.
* * generic/tclEncoding.c (TclFindEncodings): Normalize the pathdgp2003-11-051-1/+35
| | | | | | of the executable before passing to TclpInitLibraryPath() to avoid buggy handling of paths containing "..". [Bug 832657] * tests/unixInit.test (unixInit-2.10): New test for fixed bug.
* regsub fixvincentdarley2003-10-141-1/+13
|
* Added constraint to the new tests.dgp2003-10-081-9/+10
|
* Made Tcl_NumUtfChars do the right thing with \u0000 when guessing the lengthdkf2003-10-081-4/+19
| | | | because of a negative 'length' parameter. [Bug 769812]
* * tests/exec.test: Corrected temporary file managementdgp2003-10-071-366/+364
| | | | | | | | | * tests/fileSystem.test: issues uncovered by -debug 1 test * tests/io.test: operations. Also backported some * tests/ioCmd.test: other fixes from the HEAD. * tests/pid.test: [Bugs 675605, 675655, 675659] * tests/socket.test: * tests/source.test:
* * tests/exec.test: Corrected temporary file managementdgp2003-10-076-190/+317
| | | | | | | | * tests/fileSystem.test: issues uncovered by -debug 1 test * tests/ioCmd.test: operations. Also backported some * tests/pid.test: other fixes from the HEAD. * tests/socket.test: [Bugs 675605, 675655] * tests/source.test:
* * 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/io.test: Corrected several tests that failed when pathsdgp2003-10-072-38/+23
| | | | * tests/ioCmd.test: included regexp-special chars. [Bug 775394]
* * tests/regexp.test: Matched [makeFile] with [removeFile].dgp2003-10-072-11/+19
| | | | * tests/regexpComp.test: [Bug 675652]
* * 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]
* * tests/reg.test: Corrected duplicate test names.dgp2003-10-062-4/+4
| | | | * tests/resource.test: [Bugs 710370, 710358]
* * tests/cmdMZ.test: Updated [package require tcltest] lines todgp2003-10-065-9/+9
| | | | | | | * tests/fileSystem.test: indiciate that these test files * tests/notify.test: use features of tcltest 2. [Bug 706114] * tests/parseExpr.test: * tests/unixNotfy.test:
* filesystem bug fixes: volumerelative normalization, file join inconsistencyvincentdarley2003-10-061-1/+18
|
* new tests for reported problems, fixes to followvincentdarley2003-10-032-4/+112
|
* * generic/tclBasic.c (CallCommandTraces): Added safety bitdgp2003-09-291-13/+16
| | | | | | | | * tests/trace.test: masking to prevent any of the bit values TCL_TRACE_*_EXEC from leaking into the flags field of any Command struct. This does not fix [Bug 811483] but helps to contain some of its worst symptoms. Also backported the corrections to test trace-28.4 from Vince Darley.
* * generic/tclCmdMZ.c (): Fixed [Bug 807243] wheredgp2003-09-241-1/+37
| | | | | | * tests/trace.test (trace-31,32.*): the introspection results of both [trace info command] and [trace info execution] were getting co-mingled. Thanks to Mark Saye for the report.
* * generic/tclExecute.c: adding (DE)CACHE_STACK_INFO() pairs toMiguel Sofer2003-09-191-1/+9
| | | | | protect all calls that may cause traces on ::errorInfo or ::errorCode to corrupt the stack [Bug 804681]
* && of the constraints is the default; need not be specified.dgp2003-09-041-3/+3
|
* Typo correction: knownbug -> knownBugdgp2003-09-041-2/+2
|
* * generic/tclUtil.c: Corrected [Bug 411825] and other bugs indgp2003-08-271-1/+21
| | | | | | TclNeedSpace() where non-breaking space (\u00A0) and backslash-escaped spaces were handled incorrectly. * tests/util.test: Added new tests util-8.[2-6].
* * tests/util.test: Added new tests for remaining TclNeedSpace()dgp2003-08-271-1/+36
| | | | bugs discussed in [Bug 411825].
* * tests/pkgMkIndex.test: Added a test for [pkg_mkIndex -verbose].rmax2003-07-241-1/+9
|
* * generic/tclBasic.c: Corrected several instances of unsafedgp2003-07-181-7/+5
| | | | | | | * generic/tclCompile.c: truncation of UTF-8 strings that might * generic/tclProc.c: break apart a multi-byte character. * library/init.tcl: [Bug 760872] * tests/init.test:
* * library/http/pkgIndex.tcl: merged to v2.4.4 from headhobbs2003-07-181-1/+7
| | | | | * library/http/http.tcl: add support for user:pass info in URL. * tests/http.test: [Bug 759888] (shiobara)
* Fixed confusing error message. [Bug 771539]dkf2003-07-151-2/+2
|
* Documented and tested for the current behaviour of [binary format a] anddkf2003-07-111-1/+23
| | | | [binary scan ? a]. This is what they've been doing all along. [Bug 735364]
* * tests/cmdAH.test: Made tests of [file mtime] work better on FATdkf2003-07-041-27/+74
| | | | filesystems. [Patch 760768] Also a little general cleanup.
* file copy empty filename bug fixvincentdarley2003-06-231-1/+11
|
* backport of regsub empty string fixesvincentdarley2003-06-171-1/+41
|
* * generic/tclBasic.c:Miguel Sofer2003-06-101-1/+11
| | | | | | | * generic/tclExecute.c: let TclExecuteObjvInternal call TclInterpReady instead of relying on its callers to do so; fix for the part of [Bug 495830] that is new in 8.4. * tests/interp.test: Added tests 18.9 (knownbug) and 18.10
* * string.test (string-4.15): Added test for [string first] bugdgp2003-06-091-1/+8
| | | | | reported in Tcl 8.3, where test for all-single-byte-encoded strings was not reliable.
* Consequent fixes from [Bug 699060]; [format] should not be too eager to demotedkf2003-05-141-1/+24
| | | | wides to ints, and should throw errors when appropriate.
* * generic/tclInterp.c: (AliasObjCmd): Added refCounting of the wordsdgp2003-05-121-1/+10
| | | | | * tests/interp.test (interp-33.1): of the target of an interp alias during its execution. Also added test. [Bug 730244].
* * generic/tclVar.c (TclObjLookupVar): [Bug 735335] temporary fix,Miguel Sofer2003-05-121-1/+15
| | | | | disabling usage of tclNsVarNameType. * tests/var.test (var-15.1): test for [Bug 735335]
* Corrected error message for grammar and spelling.dkf2003-05-052-6/+6
|
* glob and square brackets fixvincentdarley2003-04-291-1/+8
|
* filesystem fixes backportedvincentdarley2003-04-145-22/+30
|
* Fixed Bug 710310 (duplicate test numbers in clock.test). Made major Kevin B Kenny2003-04-122-49/+39
| | | | | changes to tclWinTime.c and related code to improve loop filter stability.
* * generic/tclCmdMZ.c (Tcl_StringObjCmd,STR_IS_INT): Correcteddgp2003-04-111-1/+17
| | | | | | | | inconsistent results of [string is integer] observed on systems where sizeof(long) != sizeof(int). [Bug 718878] * tests/string.test: Added tests for Bug 718878. * doc/string.n: Clarified that [string is integer] accepts 32-bit integers.
* * tests/README: Direct [source] of *.test files is no longerdgp2003-04-011-21/+40
| | | | | recommended. The tests/*.test files should only be evaluated under the control of the [runAllTests] command in tests/all.tcl.