summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | [b47b176adf] Stop possible segfaults when variability in mutex lockaku2014-06-201-0/+16
| |\ \ | | |/ | | | | | | | | | schedules cause a ForwardingResult to remain on the forwardList after it has been processed (IORChan is the origin of the code in IORTrans).
| | * [b47b176adf] Stop possible segfaults when variability in mutex lockaku2014-06-201-0/+16
| | | | | | | | | | | | | | | schedules cause a ForwardingResult to remain on the forwardList after it has been processed (IORChan is the origin of the code in IORTrans).
| * | [b47b176adf] Stop segfault when variability in mutex lock schedules cause dgp2014-06-191-0/+6
| | | | | | | | | | | | a ForwardingResult to remain on the forwardList after it has been processed.
| * | [f0f876c141] Improve consistency in error messages.dkf2014-06-1714-56/+58
| | |
| * | [1758a0b603] socket_*-2.13 : Workaround the broken select() in some Linuxdgp2014-06-161-2/+56
| |\ \ | | |/ | | | | | | kernels that fails to report a writable state on a socket when an error condition (or remote close) is present.
| | * [1758a0b603] socket-2.13 : Workaround the broken select() in some Linuxdgp2014-06-161-3/+58
| | |\ | | | | | | | | | | | | kernels that fails to report a writable state on a socket when an error condition (or remote close) is present.
| | | * merge 8.5bug_1758a0b603dgp2014-06-161-0/+41
| | | |\ | | | |/ | | |/|
| | | * Additional check for an error condition on the socket.dgp2014-06-121-1/+7
| | | |
| | | * Workaround the broken select() in some Linux kernels that fails to reportdgp2014-06-111-3/+52
| | | | | | | | | | | | | | | | | | | | a writable state on a socket when an error condition (or remote close) is present. Would be good to add actual test suite tests for this, but until then see demo scripts in the ticket 1758a0b603.
| * | | merge socket test from 8.5dgp2014-06-161-0/+42
| |\ \ \ | | |/ /
| | * | Draft test for [1758a0b603].dgp2014-06-131-0/+41
| | |/
| * | [311e61d12a] Generate error code in *all* places where commands are looked up.dkf2014-06-161-1/+2
| | |
| * | [cb042d294e] Improve consistency of [dict] wrong-args error messages.dkf2014-06-153-41/+41
| | |
| * | [1b0266d8bb] Make [dict replace] and [dict remove] have canonicalization ↵dkf2014-06-154-161/+287
| |\ \ | | | | | | | | | | | | semantics close to [lrange] and [lreplace]. [dict merge] is also improved, but is not as strict.
| | * | Some more cleaning upbug_1b0266d8bbdkf2014-06-151-36/+44
| | | |
| | * | Make [dict replace] and [dict remove] guarantee result canonicality.dkf2014-06-152-95/+84
| | | |
| | * | Improved the error messages. dkf2014-06-074-39/+104
| | | | | | | | | | | | | | | | We do not want parsing an invalid dictionary to give errors about lists! As compensation, we get greater precision in the errorcode.
| | * | merge trunkdkf2014-06-063-5/+83
| | |\ \ | | |/ / | |/| |
| * | | Tests socket*-2.12 test for DiscardOutput() updates.dgp2014-06-051-1/+39
| |\ \ \ | | | |/ | | |/|
| | * | Test socket-2.12 covers the DiscardOutput() update.dgp2014-06-051-1/+39
| | | |
| * | | When too many chars are read by ReadChars() and we trim the limits to get it ↵dgp2014-06-052-4/+44
| |\ \ \ | | |/ / | | | | | | | | right on the next pass, don't forget the TCL_UTF_MAX padding demanded by Tcl_ExternalToUtf(). (Thanks for finding that, aku!) Fix the factorPtr management. It was just totaly wrong. The factor should be a ratio of the record of bytes read to the record of chars read. With those fixes, new test io-12.6 covers the "too many chars" code.
| | * | merge forkdgp2014-06-050-0/+0
| | |\ \
| | | * | Fixed a tricky interaction of IO system and encodings which couldandreask2014-06-051-2/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | result in a panic. The relevant function is ReadChars() (short RC in the following). When the encoding and translation transforms deliver more characters than were requested the iterative algorithm used by RC reduces the value of "dstLimit" (= the number of bytes allowed to be copied into the destination buffer) to force the next round to deliver less characters, hopefully the number requested. The existing code used the byte located just after the last wanted character to determine the new limit. The resulting value could _undershoot_ the best possible limit because Tcl_ExternalToUtf would effectively reduce this limit further, by TCL_UTF_MAX+1, to have enough space for a single multi-byte character in the buffer, and a closing '\0' as well. One effect of this were additional calls to ReadChars() to retrieve the characters missed by a call with an undershot limit. In the limit (sic) however this was also able to cause a full-blown "Buffer Underflow" panic if the original request was for less than TCL_UTF_MAX characters (*), and we are using a single-byte encoding like iso-8859-1. Because then the undershot dstLimit would prevent the next round from copying anything, and causing it to try and consolidate the current buffer with the next buffer, thinking that it had to merge a multi-byte character split across buffer boundaries. (Ad *) For example because the previous call had undershot already and left only such a small amount of characters behind! The basic fix to the problem is to add TCL_UTF_MAX back to the limit, like is done in all the (three) other places in RC setting a new one. Note however that this naive fix may generate a new limit which is the same as the old, or possibly larger. If that happens we act very conservatively and reduce the limit by only one byte instead. While I believe that this last conservative approach will never reduce the limit to TCL_UTF_MAX or less before reaching a state where it returnds the exact amount of requested characters I still added a check against this situation anyway, causing a new panic if triggered.
| | * | | When too many chars are read by ReadChars() and we trim the limits todgp2014-06-052-4/+44
| | |/ / | | | | | | | | | | | | | | | | | | | | | | | | get it right on the next pass, don't forget the TCL_UTF_MAX padding demanded by Tcl_ExternalToUtf(). (Thanks for finding that, aku!) Fix the factorPtr management. It was just totaly wrong. The factor should be a ratio of the record of bytes read to the record of chars read. With those fixes, new test io-12.6 covers the "too many chars" code.
| | | * merge trunkdkf2014-06-064-15/+29
| | | |\ | | |_|/ | |/| |
| | | * more tests, cleaning up the code a bitdkf2014-06-042-16/+42
| | | |
| | | * merge trunkdkf2014-06-031-60/+75
| | | |\
| | | * | [1b0266d8bb] Working towards ensuring that all dict operations are ↵dkf2014-06-032-25/+63
| | | | | | | | | | | | | | | | | | | | sufficiently strict.
* | | | | Replaced option "-unsupported1" by test command "testsocket debugflags" ↵oehhar2014-07-174-80/+118
| | | | | | | | | | | | | | | | | | | | (thanks Donal, Donald).
* | | | | Robust async connect tests by temporarely switching off auto continuation. ↵oehhar2014-06-053-4/+116
|/ / / / | | | | | | | | | | | | Ticket [13d3af3ad5]
* | | | Add missing calls to Tcl_DecrRefCount() in string object man page examples.andy2014-06-041-1/+4
| | | |
* | | | Revise DiscardOutput() to account for revisions to the loop in ↵dgp2014-06-041-0/+5
|\ \ \ \ | |/ / / | | | | | | | | FlushChannel() which is its only caller. We need to discard the curOutPtr buffer as well, and not count on another pass through the loop to attempt to flush it (and raise the same failure again?).
| * | | Revise DiscardOutput() to account for revisions to the loop in FlushChannel()dgp2014-06-041-0/+5
| | | | | | | | | | | | | | | | | | | | which is its only caller. We need to discard the curOutPtr buffer as well, and not count on another pass through the loop to attempt to flush it (and raise the same failure again?).
| * | | merge fork of 8.5 branchdgp2014-06-034-27/+42
| |\ \ \
* | | | | Valgrind doesn't like use of uninitialized variables.dgp2014-06-041-1/+1
| | | | |
| | | | |
| \ \ \ \
*-. \ \ \ \ [734138ded8] Revisions so that unreported errors don't get lost duringdgp2014-06-033-13/+19
|\ \ \ \ \ \ | | | |/ / / | | |/| | / | |_|_|_|/ |/| | | | the close of a channel.
| | * | | Backport I/O core fixes made known by async socket work on trunk.dgp2014-06-031-7/+15
| | |\ \ \ | | |/ / / | |/| | |
| * | | | These edits make all tests outside of socket-14.* pass on OSX Mavericks.dgp_async_socketdgp2014-06-031-1/+3
| | | | | | | | | | | | | | | | | | | | Several socket-14.* tests failing there, and those that pass are very slow about it. Firewall or poor networking configuration may be playing a role.
| * | | | These edits make the tests socket-14.11.[01] stop hanging, but also introducedgp2014-06-023-12/+16
|/ / / / | | | | | | | | a whole raft of test failures. WIP.
* | | | Improve robustness of the socket tests against systems that support IPv6, ↵max2014-06-021-60/+75
| |_|/ |/| | | | | | | | but don't resolve localhost to ::1 (and vice versa for IPv4 and 127.0.0.1).
* | | Correct the interest masks in the Tcl_CreateFileHandler() calls in ↵dgp2014-05-313-13/+14
|\ \ \ | | |/ | |/| | | | PipeWatchProc(). When we are interested in both readable and writable events of a command pipeline channel, we only want the readable from the read end of the pipe, and the writable from the write end of the pipe.
| * | Correct the interest masks in the Tcl_CreateFileHandler() calls indgp2014-05-313-13/+14
| | | | | | | | | | | | | | | PipeWatchProc(). When we are interested in both readable and writable events of a command pipeline channel, we only want the readable from the read end of the pipe, and the writable from the write end of the pipe.
* | | Refinements of FlushChannel() and its callers. Notably includes removal of ↵dgp2014-05-293-118/+73
|\ \ \ | |/ / | | | | | | the flag BUFFER_READY.
* | | Merged the workarounds and fixes for wrapped executables on variousandreask2014-05-281-1/+85
|\ \ \ | | | | | | | | | | | | | | | | platforms into the trunk. For details see the merged revision and its ancestor.
* | | | eliminate two unused variables.jan.nijtmans2014-05-231-2/+0
| | | |
* | | | Ditto [dict append], [dict incr], and [dict lappend]. Update description of ↵andy2014-05-211-4/+7
| | | | | | | | | | | | | | | | [dict create] to explicitly state that it returns the new dictionary.
* | | | Ditto [dict unset].andy2014-05-211-1/+2
| | | |
* | | | Update dict man page to state that [dict set] returns the updated dictionary ↵andy2014-05-211-1/+1
| | | | | | | | | | | | | | | | value.
* | | | Fix gcc warning (signed-unsigned compare)jan.nijtmans2014-05-211-1/+1
| | | |
* | | | Fix c&p errors in test descriptionsmax2014-05-211-4/+4
| | | |