summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* regsub fixvincentdarley2003-10-141-1/+14
|
* TIP#127 Implementation. Thanks to Michael Schlenker for his implementation workdkf2003-10-142-5/+106
|
* filesystem bug fixesvincentdarley2003-10-131-1/+18
|
* 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/cmdAH.test:dgp2003-10-078-317/+313
| | | | | | | | | | | * tests/exec.test: Corrected temporary file management * 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/main.test: * tests/pid.test: [Bugs 675605, 675655, 675659] * tests/socket.test: * tests/source.test:
* * tests/pid.test: Corrected temporary file management issuesdgp2003-10-071-11/+16
| | | | uncovered by -debug 1 test operations. [Bug 675655]
* * tests/fCmd.test: Run tests with the [temporaryDirectory] asdgp2003-10-071-1/+3
| | | | | 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-3/+3
| | | | happens, not for any particular result. [Bug 685991]
* * tests/reg.test: Corrected duplicate test names.dgp2003-10-069-19/+19
| | | | | | | | | | | | | * tests/resource.test: [Bugs 710370, 710358] * tests/dict.test: * tests/dict.test: Updated [package require tcltest] lines to * tests/fileSystem.test: indiciate that these test files * tests/lrepeat.test: use features of tcltest 2. [Bug 706114] * tests/notify.test: * tests/parseExpr.test: * tests/unixNotfy.test: * tests/winDde.test:
* fix for [Bug 816641] - faulty execution and catch stack management.Miguel Sofer2003-10-041-1/+10
|
* fixed inconsistent handling of file separators in file joinvincentdarley2003-09-301-1/+80
|
* improved test descriptiondgp2003-09-291-2/+4
|
* TIP#112 ([namespace ensemble] command) implementation.dkf2003-09-291-13/+448
|
* trace.test remove knownBugvincentdarley2003-09-241-12/+13
|
* * tests/trace.test (trace-31,32-*): Added tests for [Bug 807243]dgp2003-09-241-1/+34
| | | | and [Bug 811483].
* Stop failure of expr-23.4 on 64bit architectures. [Bug 808244]dkf2003-09-191-2/+2
|
* * generic/tclExecute.c: adding (DE)CACHE_STACK_INFO() pairs to protect all ↵Miguel Sofer2003-09-191-1/+9
| | | | | | calls that may cause traces on ::errorInfo or ::errorCode to corrupt the stack [Bug 804681] ----------------------------------------------------------------------
* test suite fix for AFSvincentdarley2003-09-161-2/+8
|
* minor filesystem bug fixesvincentdarley2003-09-161-3/+43
|
* TIP#123 Implementation based on work by Arjen Markus. [Patch 655176]dkf2003-09-122-54/+108
|
* * doc/FileSystem.3: Implementation ofdgp2003-09-053-117/+382
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/source.n: TIPs 137/151. Adds * doc/tclsh.1: a -encoding option to * generic/tcl.decls: the [source] command * generic/tclCmdMZ.c (Tcl_SourceObjCmd): and a new C routine, * generic/tclIOUtil.c (Tcl_FSEvalFileEx): Tcl_FSEvalFileEx(), * generic/tclMain.c (Tcl_Main): that provides C access * mac/tclMacResource.c (Tcl_MacSourceObjCmd): to the same function. * tests/cmdMZ.test: Also adds command line * tests/main.test: option handling in Tcl_Main() so that tclsh * tests/source.test: and other apps built on Tcl_Main() respect a -encoding command line option before a script filename. Docs and tests updated as well. [Patch 742683] This is a ***POTENTIAL INCOMPATIBILITY*** only for those C programs that embed Tcl, build on Tcl_Main(), and make use of Tcl_Main's former ability to pass a leading "-encoding" option to interactive shell operations. * generic/tclInt.decls: Added internal stub * generic/tclMain.c (Tcl*StartupScript*): table entries for two new functions Tcl_SetStartupScript() and Tcl_GetStartupScript() that set/get the path and encoding for the startup script to be evaluated by either Tcl_Main() or Tk_Main(). Given public names in anticipation of their exposure by a followup TIP. * generic/tclDecls.h: make genstubs * generic/tclIntDecls.h: * generic/tclStubInit.c:
* && of constraints is the default; need not be specified.dgp2003-09-041-3/+3
|
* Typo correction: knownbug -> knownBugdgp2003-09-041-2/+2
|
* * generic/tclCmdAH.c: Corrected bug in TIP 90 implementationdgp2003-08-291-2/+2
| | | | | | * tests/cmdMZ.test: where the default -errorcode NONE value was not copied into the return options dictionary. This correction modified one test result.
* * 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].
* TIP#136 IMPLEMENTATION. We now have an [lrepeat] command!dkf2003-08-111-0/+79
|
* * tests/async.test: Added several tests that demonstrate Tcldgp2003-07-247-12/+148
| | | | | | | | | | * tests/basic.test: Bug 489537, Tcl's longstanding failure to * tests/dict.test: properly quote any leading '#' character * tests/dstring.test: when generating the string rep of a list * tests/list.test: so that the comment-power of that character * tests/parse.test: is hidden from any [eval], in order to * tests/util.test: satisfy the documentation that [list] does [eval]-safe quoting.
* * library/package.tcl: Fixed a typo that broke pkg_mkIndex -verbose.rmax2003-07-241-1/+9
| | | | * tests/pkgMkIndex.test: Added a test for [pkg_mkIndex -verbose].
* test suite on afs fixvincentdarley2003-07-211-3/+13
|
* * library/http/pkgIndex.tcl: upped to http v2.4.4hobbs2003-07-181-1/+7
| | | | | * library/http/http.tcl: add support for user:pass info in URL. * tests/http.test: [Bug 759888] (shiobara)
* Fixed error message to be less confusing [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]
* winFCmd.test fixvincentdarley2003-07-081-6/+20
|
* * tests/cmdAH.test: Made tests of [file mtime] work better on FATdkf2003-07-041-29/+76
| | | | filesystems. [Patch 760768] Also a little general cleanup.
* [string map] now can take dictionaries for maps but the condition for doing sodkf2003-07-041-1/+5
| | | | is deeply tricky. [Bug 759936]
* * tests/init.test: Added [cleanupTests] to report results of testsdgp2003-06-273-7/+6
| | | | | | * tests/pkg.test: that run in slave interps. [Bugs 761334,761344] * tests/http.test: Used more reliable path to find httpd script.
* * tests/init.test: Added tests init-4.6.* to illustrate [Bug 760872]dgp2003-06-261-3/+4
|
* Factored out the trace code - it's big enough to be its own maintenance areadkf2003-06-253-65/+63
| | | | and tricky enough to discourage non-specialists...
* * doc/dde.n: Committed TIP #135 which changes thepatthoyts2003-06-231-11/+23
| | | | | | * win/tclWinDde.c: -exact option to -force. Also cleaned * tests/winDde.test: a bug in the tests. * library/dde/pkgIndex.tcl: Incremented version to 1.2.5
* * doc/dde.n: Committed TIP #120 which provides thepatthoyts2003-06-231-10/+254
| | | | | | * win/tclWinDde.c: dde package for safe interpreters. * tests/winDde.test: Incremented package version to 1.2.4 * library/dde/pkgIndex.tcl:
* filesystem fixes -- see ChangeLogvincentdarley2003-06-231-1/+11
|
* regsub empty string fixes, and windows buildvincentdarley2003-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
* * generic/tcl.decls: Ported the changes from theandreas_kupries2003-06-091-0/+81
| | | | | | | | | | | | | | | | | * generic/tcl.h: 'tip-59-implementation' branch into the CVS * generic/tclBasic.c: head. Regenerated stub table. Regenerated * generic/tclInt.h: the configure's scripts, with help from Joe * generic/tclDecls.h English. * generic/tclStubInit.c: * generic/tclConfig.c: * generic/tclPkgConfig.c: * unix/Makefile.in: * unix/configure.in: The changes in the windows section are not * unix/tcl.m4: yet committed, they await feedback from * unix/mkLinks: David Gravereaux. * doc/RegConfig.3: * mac/tclMacPkgConfig.c: * tests/config.test:
* * 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.
* fix to WinTcl file rename error messagevincentdarley2003-06-021-1/+26
|