summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [Bug 2991415]: tclport.h #include'd before limits.hjan.nijtmans2011-11-303-1/+3
|
* don't install tommath_(super)?class.hjan.nijtmans2011-11-303-4/+7
|\ | | | | don't install directories like 8.2 and 8.3
| * Use the same shebang comment everywherejan.nijtmans2011-11-306-7/+13
| |\ | | | | | | | | | don't install tommath_(super)?class.h don't install directories like 8.2 and 8.3
| | * Use the same shebang comment everywherejan.nijtmans2011-11-294-3/+9
| | |
* | | * library/history.tcl (history): Simplify the dance of variabledkf2011-11-252-1/+6
| | | | | | | | | management used when chaining to the implementation command.
* | | Make some of the logic in TclCompileObj less heavily nested, to improve clarity.dkf2011-11-222-100/+104
| | |
* | | [Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only)jan.nijtmans2011-11-224-5/+13
|\ \ \ | |/ /
| * | [Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only)jan.nijtmans2011-11-224-5/+13
| |\ \ | | |/
| | * [Bug 2935503]: Windows: file mtime sets wrong timejan.nijtmans2011-11-224-0/+16
| | |
* | | Fix a bug where global precompiled code (A) called from a precompiled andreask2011-11-211-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | procedure causes the core to recompile (A), triggering the trap laid inside, i.e. 'error "called a copy of compiled code"'. <pre>Example ----------------------ex1.tcl proc init {} { source ex2.tcl } init ----------------------ex2.tcl puts a ----------------------</pre> When run as precompiled code the 'puts a' is not executed, only the trap. Fixed by enclosing the offending code into a guard which prevents its execution for precompiled code. The change passes the entire testsuite.
* | | Fixed typo in a comment.andreask2011-11-211-1/+1
| | |
* | | Revise results of the thread-7.28 through thread-7.31 tests to account for ↵Joe Mistachkin2011-11-212-237/+330
| | | | | | | | | | | | the fact they are canceled via a script sent to the thread asynchronously, which then impacts the error message handling. Attempt to manually drain the event queue for the main thread after joining the test thread to make sure no stray events are processed at the wrong time on the main thread. Revise all the synchronization and comparison semantics related to the thread id and error message.
* | | Remove unnecessary [after] calls from the thread tests. Make error message ↵Joe Mistachkin2011-11-212-8/+21
| | | | | | | | | | | | matching more robust for tests that may have built-in race conditions. Test thread-7.26 must first unset all thread testing related variables.
* | | Remove all use of thread::release from the thread 7.x tests, replacing it ↵Joe Mistachkin2011-11-182-50/+75
| | | | | | | | | | | | with a script that can easily cause 'stuck' threads to self-destruct for those test cases that require it. Also, make the error message handling far more robust by keeping track of every asynchronous error.
* | | Refactor all the remaining thread-7.x tests that were using [testthread]. ↵Joe Mistachkin2011-11-182-88/+76
| | | | | | | | | | | | Note that this test file now requires the very latest version of the Thread package to pass all tests. In addition, the thread-7.18 and thread-7.19 tests have been flagged as knownBug because they cannot pass without modifications to the [expr] command, persuant to TIP #392.
* | | For [testthread cancel], avoid creating a new Tcl_Obj when the default ↵Joe Mistachkin2011-11-182-1/+7
| | | | | | | | | | | | script cancellation result is desired.
* | | win/tclWinConsole.c: Refactor common thread handling patterns.dkf2011-11-112-212/+235
| | |
* | | Generalize previous fix to all of zlib.test; also, tidy up [chan configure] ↵ferrieux2011-11-112-23/+24
| | | | | | | | | | | | flags across zlib.test.
* | | Use nonblocking writes in single-threaded IO tests to avoid deadlocks when ↵ferrieux2011-11-112-1/+6
| | | | | | | | | | | | going beyond OS buffers [Bug 3428756].
* | | More work in progress converting tests from [testthread] to Thread package.dgp2011-11-091-262/+235
| | |
* | | missing constraint and too brittle resultdgp2011-11-082-2/+3
| | |
* | | missing constraintsdgp2011-11-082-18/+138
|\ \ \ | |/ /
| * | Missing constraintsdgp2011-11-082-16/+136
| | |
| * | merge release to devdgp2011-11-0711-11/+28
| |\ \
| | * | tag&bag another 8.5.11 RC.core_8_5_11core_8_5_11_rcdgp2011-11-042-2/+17
| | | |
| | * | merge to releasedgp2011-11-013-2/+8
| | |\ \ | | |/ / | |/| |
| | * | merge to releasedgp2011-10-314-31/+19
| | |\ \
| | * \ \ Merge to release branchdgp2011-10-261-6/+27
| | |\ \ \
| | * | | | Release candidate branch for Tcl 8.5.11.dgp2011-10-209-10/+10
| | | | | |
* | | | | | * unix/tclUnixCompat.c (TclpGetPwNam, TclpGetPwUid, TclpGetGrNam)dkf2011-11-032-44/+223
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (TclpGetGrGid): Use the elaborate memory management scheme outlined on http://www.opengroup.org/austin/docs/austin_328.txt to handle Tcl's use of standard reentrant versions of the passwd/group access functions so that everything can work on all BSDs. Problem identified by Stuart Cassoff.
* | | | | | Work in progress converting tests from [testthread cancel] to [thread::cancel]dgp2011-11-012-348/+270
| | | | | |
* | | | | | merge markdgp2011-11-010-0/+0
|\ \ \ \ \ \ | |/ / / / /
| * | | | | silence more warningsdgp2011-11-011-0/+4
| | | | | |
| * | | | | Silence warnings.dgp2011-11-011-2/+2
| | |_|/ / | |/| | |
* | | | | 3414754 Fix the PATHFLAGS != 0 intrep normalizing trailing slashes.dgp2011-10-312-28/+15
|\ \ \ \ \ | |/ / / /
| * | | | 3414754 Fix the PATHFLAGS != 0 intrep normalizing trailing slashes.dgp2011-10-314-31/+19
| |\ \ \ \ | | |_|/ / | |/| | |
| | * | | Purge the old, buggy implementation.bug_3414754dgp2011-10-311-34/+0
| | | | |
| | * | | CONST-ification update.dgp2011-10-272-3/+4
| | | | |
| | * | | Added test case to the test suitedgp2011-10-271-0/+4
| | | | |
| | * | | Proposed fix for 3414754dgp2011-10-271-0/+17
| |/ / /
* | | | merge markdgp2011-10-260-0/+0
|\ \ \ \ | |/ / /
| * | | merge backportdgp2011-10-261-6/+27
| |\ \ \ | | |/ / | |/| |
| | * | Backport 2902268 fix.bug_2902268dgp2011-10-261-6/+27
| |/ /
* | | MINOR: Add emacs style info to end of C files.dkf2011-10-213-5/+32
| | |
* | | add missing merge markdgp2011-10-200-0/+0
|\ \ \ | |/ /
| * | Update changes toward 8.5.11 release. Bump to http 2.7.7.dgp2011-10-206-6/+50
| | |
| * | Don't cache the system timezone when it was derived from TCL_TZ or TZ.max2011-10-183-11/+56
| | |
* | | Update changes toward 8.6b3 release. Bump to http 2.8.3.dgp2011-10-206-6/+50
| | |
* | | Resolver fix from Stefan Sobernig.dkf2011-10-206-6/+499
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclLiteral.c (TclInvalidateCmdLiteral): [Bug 3418547]: Additional code for handling the invalidation of literals. * generic/tclBasic.c (Tcl_CreateObjCommand, Tcl_CreateCommand) (TclRenameCommand, Tcl_ExposeCommand): The four additional places that need extra care when dealing with literals. * generic/tclTest.c (TestInterpResolverCmd): Additional test machinery for interpreter resolvers.
| * | | ChangeLog entry.dkf2011-10-202-3/+13
| | | |