summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* * Cleaned up, constrained, and reduced the amount of [exec] usagedgp2002-07-101-0/+18
| | | | in the test suite.
* Removed exec of unix utilities from cmdAH.test [Bug 579211]dkf2002-07-101-0/+2
|
* Fix for bug 579284; registered math funcs can now correctly return wide-ints.dkf2002-07-101-32/+38
|
* * tests/socket.test: Fixed bug #578164. The original reason forandreas_kupries2002-07-081-0/+7
| | | | | | the was a DNS outage while running the testsuite. Changed [info hostname] to 127.0.0.1 to bypass DNS, knowing that we operate on the local host.
* * doc/tcltest.n: Fixed incompatibility in [viewFile].dgp2002-07-081-0/+6
| | | | | * library/tcltest/tcltest.tcl: Corrected docs. Bumped to 2.2.1. * library/tcltest/pkgIndex.tcl: [Bug 578163]
* no zero refcount in Tcl_FSvincentdarley2002-07-081-1/+3
|
* fs cleanupvincentdarley2002-07-081-0/+11
|
* add file link constraintvincentdarley2002-07-081-0/+7
|
* * tests/pkgMkIndex.test: Constrained tests of [load] package indexingdgp2002-07-061-1/+6
| | | | | to those platforms where the testing shared libraries have been built. [Bug 578166].
* * added recent changesdgp2002-07-051-0/+4
|
* * generic/tclClock.c (FormatClock): Convert the format string tormax2002-07-051-0/+7
| | | | | | UTF8 before calling TclpStrftime, so that non-ASCII characters don't get mangled when the result string is being converted back. * tests/clock.test: Added a test for that.
* Made many tests work properly when the current directory is not writable.dkf2002-07-051-0/+26
| | | | Added targets to unix/Makefile.in to facilitate testing of this situation.
* updated for 8.4b1 releasehobbs2002-07-051-0/+4
|
* More fixing of writable-current-dir assumption. [Bug 575824]dkf2002-07-041-0/+6
|
* * tests/socket.test:andreas_kupries2002-07-041-0/+5
| | | | | | * tests/winPipe.test: * tests/pid.test: Fixed SF Bug #575848. See below for a description the general problem.
* fixed [Bug 575817]Miguel Sofer2002-07-041-0/+4
|
* * All the bugs below are instances of the same problem: Theandreas_kupries2002-07-041-14/+26
| | | | | | | | | testsuite assumes [pwd] = [temporaryDirectory] and writable. * tests/iogt.test: Fixed bug #575860. * tests/io.test: Fixed bug #575862. * tests/exec.test: * tests/ioCmd.test: Fixed bug #575836.
* tests/pkg1 removaldgp2002-07-041-0/+7
|
* * Fixed [Bug 575857] where this test filedgp2002-07-041-0/+21
| | | | | | expected to be able to write to [file join [testsDirectory] pkg]. Part of the fix was to import several auxilliary files into the test file itself.
* * tests/main.test: Cheap fix for [Bugs 575851, 575858]. Avoiddgp2002-07-031-0/+8
| | | | | | | * tests/tcltest.test: non-writable . by [cd [temporaryDirectory]]. * library/auto.tcl: Fix [tcl_findLibrary] to be sure it sets $varName only if a successful library script is found. [Bug 577033]
* * generic/tclCompCmds.c (TclCompileCatchCmd): returnMiguel Sofer2002-07-031-0/+6
| | | | | TCL_OUT_LINE_COMPILE instead of TCL_ERROR: let the failure happen at runtime so that it can be caught [Bug 577015].
* * doc/tcltest.n: more refinements of the documentation.dgp2002-07-031-0/+5
| | | | | * library/tcltest/tcltest.tcl: Added trace to be sure the stdio constraint is updated whenever the [interpreter] changes.
* Markup fixes, spellcheck.jenglish2002-07-021-0/+4
|
* * doc/tcltest.n: Reverted [makeFile] and [viewFile] todgp2002-07-021-0/+7
| | | | | | | | * library/tcltest/tcltest.tcl: their former behavior, and documented * tests/cmdAH.test: it. Corrected misspelling of hook * tests/event.test: procedure. Restored tests. * tests/http.test: * tests/io.test:
* * library/tcltest/tcltest.tcl: Simplified logic of [GetMatchingFiles]dgp2002-07-021-0/+8
| | | | | | | and [GetMatchingDirectories], removing special case processing. * doc/tcltest.n: More documentation updates. Reference sections are complete. Only examples need adding.
* clearer error msgs for file linkvincentdarley2002-07-021-0/+6
|
* * doc/tcltest.n: more work in progress updating tcltest docs.dgp2002-07-011-0/+7
| | | | | | | * library/tcltest/tcltest.tcl: Change [configure -match] to stop treating an empty list as a list of the single pattern "*". Changed the default value to [list *] so default operation remains the same.
* (doc/*.[3n]) -- spell-check, fix typos (Updates from Larry Virden)jenglish2002-07-011-0/+38
|
* Fix for Tcl bug #541181; programs that link against libtcl.so on Solaris nodkf2002-07-011-0/+8
| | | | longer need to use the same compiler as that used for the library itself
* * tests/pkg/samename.tcl: restored. needed by pkgMkIndex.test.dgp2002-07-011-0/+7
| | | | | * library/tcltest/tcltest.tcl: restored writeability testing of -tmpdir, augmented by a special exception for the deafault value.
* Documented the *real* behaviour of [concat]dkf2002-07-011-0/+4
|
* * work in progress updating tcltest documentation.dgp2002-07-011-0/+2
|
* * Updated the instructions on running and adding to the test suite.dgp2002-07-011-0/+7
| | | | | Also updated several tests, mostly to correctly create and destroy any temporary files in the [temporaryDirectory] of tcltest.
* * Stopped checking for writeability of -tmpdir value because nodgp2002-07-011-0/+4
| | | | default directory can be guaranteed to be writeable.
* * Updated auto_mkIndex tests to usedgp2002-07-011-0/+8
| | | | | [makeFile] and [removeFile] so tests are done in [temporaryDirecotry] where write access is guaranteed.
* * Fixed [makeFile] and [viewFile] to accurately reflect a file'sdgp2002-07-011-0/+11
| | | | | | contents. Updated tests that depended on buggy behavior. Also added warning messages to "-debug 1" operations to debug test calls to (make|remove)(File|Directory).
* * generic/tclCompile.h: modified the macro TclEmitPushMiguel Sofer2002-06-281-0/+6
|
* * docs/tcltest.n: Doc revisions in progress.dgp2002-06-281-0/+7
| | | | | | * library/tcltest/tcltest.tcl: Corrected -testdir default value. Was not reliable, and disagreed with docs! Thanks to Hemang Lavana. [Bug 575150]
* Changed all the Tcl_Platform* symbols to TclOS*; they weren't public so theirdkf2002-06-281-0/+7
| | | | names were really badly chosen. Also prevented a double-#def.
* Minor improvement to documentation for [string last], and reformatting todkf2002-06-281-0/+6
| | | | remove long-obsolete changebars.
* * Work in progress updating the documentation of the packages thatdgp2002-06-271-0/+6
| | | | come bundled with the Tcl source distribution, notably tcltest.
* * Made sure that the TCLTEST_OPTIONSdgp2002-06-271-0/+5
| | | | environment variablle configures tcltest at package load time.
* unix root volume fixvincentdarley2002-06-271-0/+3
|
* empty path name error msgsvincentdarley2002-06-261-0/+7
|
* * unix/tclUnixTime.c: Make [clock format] respect locale settings.rmax2002-06-261-0/+5
| | | | * tests/clock.test: Bug #565880. ***POTENTIAL INCOMPATIBILITY***
* clarifications in doc/CrtInterp.3 and doc/StringObj.3Miguel Sofer2002-06-261-0/+6
|
* * Corrected suppression of -verbose skip and start by [test -output].dgp2002-06-261-0/+6
| | | | | Also corrected test suite errors exposed by corrected code. [Bug 564656]
* * unix/tcl.m4: New macro SC_CONFIG_MANPAGES.rmax2002-06-251-0/+10
| | | | | | | | | | | * unix/configure.in: Added support for symlinks and compression * unix/Makefile.in: when installing the manpages. [Patch 518052] * unix/mkLinks.tcl: Default is still hardlinks and no compression. * unix/mkLinks: generated * unix/configure: * unix/README: Added documentation for the new features.
* * unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib byrmax2002-06-251-0/+5
| | | | ${libdir}.
* Surface fix for bug #533364; TclGetIntForIndex no longer assumes an unshareddkf2002-06-251-0/+10
| | | | empty result when generating an error message.