summaryrefslogtreecommitdiffstats
path: root/tests/io.test
Commit message (Collapse)AuthorAgeFilesLines
* New test attempting to demo Bug [e0a7b3e5f8]. Doesn't work yet.dgp2015-08-131-3/+65
|
* A bit of code safety, and then a test demonstrating next issue.dgp2015-08-131-1/+63
|
* New test io-53.18 adapted from demo script in [32ae34e63a]. This testdgp2015-08-121-0/+62
| | | | | | | segfaults without changes to source code. This checkin also contains a revised implementationf of [chan postevent] that stops calling Tcl_NotifyChannel() directly, and queues an event to do it instead. This stops the segfault, but causes tests iocmd-31.[67] to fail. Need advice on whether that matters.
* Test portability.dgp2015-04-301-1/+2
|
* [894da183c8] Test and fix for regression in flushing blocked channels.dgp2015-04-291-1/+32
|\
| * [894da183c8] Fix and test for bug at the point it was introduced.bug_894da183c8dgp2015-04-291-1/+32
| |
* | [879a0747be] Repair handling of incomplete multi-byte chars at the endsdgp2015-04-241-0/+52
| | | | | | | | of input buffers. Also properly reset input encoding flags when cycling through a fleeting EOF condition.
* | Test for bug [08872796bc].dgp2015-01-291-0/+19
| |
* | Base test for [5adc350683].dgp2014-10-291-0/+20
| |
* | [10dc6daa37] New fix for [gets] on non-blocking channel. This timedgp2014-10-181-0/+104
|\ \ | | | | | | properly accounts for the effects of ENCODING_LINESIZE.
| * | [10dc6daa37] [gets] on a non-blocking channel must take care so thatdgp2014-10-171-0/+68
|/ / | | | | | | | | | | | | 1) At least one call to the channel driver input proc gets made. Failure to do this locks up the channel - catastrophic FAIL. 2) After any driver call reports BLOCKED, don't call again. This is less serious, but FAILs to respect the non-blocking setting. Code corrections and tests included, to restore 8.5.15 compat.
* | backport those tests that can bedgp2014-10-101-0/+62
| |
* | New test io-53.15 for [ed29c4da21].dgp2014-10-101-0/+45
| |
* | [bc5b790099] Improper calculation of new dstLimit value. New test io-12.7.dgp2014-10-021-0/+33
| |
* | Make test io-36.1.1 more portable.dgp2014-08-201-1/+4
| |
* | dup test namedgp2014-07-101-1/+1
| |
* | [c31ca233ca] Fix TclGetsObjBinary() so that each [gets] rediscovers whetherdgp2014-07-021-0/+20
| | | | | | a nonblocking channel is blocked.
* | When too many chars are read by ReadChars() and we trim the limits todgp2014-06-051-0/+33
| | | | | | | | | | | | | | 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.
* | Increase size of test io-29.34 so that it more portably tests the case wheredgp2014-05-281-2/+2
|/ | | | the OS networking machinery gets backed up and blocks. Added several TODO comments on potential simplifications.
* Comment out lines of test io-53.4 that appear to do nothing of any value.dgp2014-05-241-5/+5
|
* merge 8.5dgp2014-05-161-0/+79
|\
| * merge 8.5bug_io_32_11dgp2014-05-161-4/+27
| |\
| | * Portable test to demo bug otherwise seen only on Windows.dgp2014-05-151-0/+20
| | |
| * | Merge completion of dgp-read-bytes branch.dgp2014-05-161-10/+38
| |\ \
| * | | More tests to demo the bug more directly.dgp2014-05-161-0/+39
| | | |
| * | | Branch to demo bug introduced in the parent commit.dgp2014-05-151-0/+20
| | | |
* | | | merge 8.5dgp2014-05-141-0/+3
|\ \ \ \ | | |_|/ | |/| |
| * | | Fix 3 test-cases which started failing on Windowsjan.nijtmans2014-05-141-0/+3
| | | |
* | | | Salvaged what was left of value in the dgp-read-bytes-detour branch.dgp2014-05-131-2/+14
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | Refactored much management of the BLOCKED and EOF flags into ChanRead() then began repairing some of the logic about them. Tests iogt-2.* now fail because they've been crafted as experiments recording the fine detail of reflected channel driver calls, and fixing the management of channel flags is changing that.
| * | | Restore default suppression of large file test.dgp2014-03-211-1/+1
| | | |
| * | | io-34.21 - fix bugs in normally skipped test.dgp2014-03-211-4/+4
| | |/ | |/| | | | io-35.18b - knownBug is not buggy on this branch.
* | | Restore the largefileSupport constraint on Darwin, where tests (chan)io-34.21dgp2014-05-121-1/+1
| | | | | | | | | take an unbearable 90 seconds each to complete.
* | | Tests (chan)io-34.21 are constrained for largefileSupport, and that'sdgp2014-05-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | disabled by default, which means never tested, which means the ridiculous bugs in them are never found and fixed. Fixed the bugs, changed the default. Large File Suppport (4GB) is commonplace now. Let those without it suffer a few failing tests reporting that fact to them.
* | | Merge the reforms of dgp-read-bytes branch into 8.5+ releases.dgp2014-05-081-1/+157
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | Large overhaul of I/O read operations - Protects integer overflow of buffers, reusing append machinery - Forces -buffersize changes to take place when commanded - Uses assertions to simplify code in "can't happen" situations - Eliminated duplication of -translation processing - Fixes bugs io-35.18b and io-35.20
| * | merge 8.5dgp2014-03-201-10/+10
| |\ \ | |/ / |/| |
| * | Test for the bug I just committed.dgp2014-03-101-0/+14
| | |
| * | Bring CRLF translation in parallel with others.dgp2014-03-101-0/+14
| |/
| * another coverage test.dgp2014-02-281-0/+15
| |
| * merge 8.5dgp2014-02-261-0/+71
| |\
| * | More coverage tests and bug fixes.dgp2014-02-261-0/+56
| | |
| * | Next coverage test to expose another refactoring error.dgp2014-02-191-0/+14
| | |
| * | Another coverage test that reveals refactoring error.dgp2014-02-181-0/+14
| | |
| * | coverage test for -translation crdgp2014-02-181-0/+14
| | |
| * | Coverage test for -translation auto handling of INPUT_SAW_CR flag.dgp2014-02-181-0/+15
| | | | | | | | | Demonstrates refactor failure.
* | | Mark io-35.18b test as knownBugjan.nijtmans2014-03-091-10/+10
| |/ |/|
* | New tests covering INPUT_NEED_NL flag handling. One exposes a bug.dgp2014-02-261-0/+71
|/
* 3530533 Add comments to failing tests.dgp2012-06-051-0/+6
|
* revert test-case from [Bug 2935503]jan.nijtmans2011-10-131-3/+3
|\
| * revert test-case change from [Bug 2935503]jan.nijtmans2011-10-131-3/+3
| |
* | [Bug 2935503] Incorrect mode field returned by file stat commandjan.nijtmans2011-10-111-4/+4
|\ \ | |/