summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* complete a comment in socket.testrmax_ipv6_branchmax2011-06-221-1/+2
|
* * doc/socket.n: Document the fact that the event loop is now needed for ↵max2011-06-161-0/+3
| | | | | | [socket -async] * unix/tclUnixSock.c: Set up the file handler for async sockets to fire on exceptions in addition to writable state. * tests/socket.test: Improve error reporting when socket-14.2 times out.
* * Don't use port 0 for test 14.2 as it fails in different ways on Linux ↵max2011-06-061-2/+2
| | | | | | | and NetBSD. * Unify channel name creation. * Prevent error messages from appearing twice. * Double the measured latency in socket.test to be on the safe side.
* * Improve socket.test by checking the latency on the loopback address and ↵max2011-06-011-7/+30
| | | | | use that for some of the tests instead of fixed "big enough" times. * Improve correctness of [socket -async] in some error cases.
* * Fix setting up of [fileevent] while an async socket is still in progress max2011-05-301-2/+37
| | | | * Cache async socket errors for later use by [fconfigure -error] * Add tests for the above
* Fix [socket -async] for DNS names with more than one addressmax2011-05-271-0/+22
|
* fix a timing issue in socket-12.3max2011-05-271-1/+2
|
* Bump TclOO version.corresponds_to_TclOO_0_6_3dkf2011-05-252-2/+2
|
* Implementation of TIP #381: Call Chain Introspection and Controldkf2011-05-252-2/+767
|
* * unix/tclUnixSock.c (TcpWatchProc): No need to check for server sockets ↵max2011-05-111-0/+18
| | | | | here, as the generic server code already takes care of that. * tests/socket.test (accept): Add tests to make sure that this remains so.
* New internal routines TclScanElement() and TclConvertElement().dgp2011-05-101-0/+4
|\ | | | | Rewritten guts of machinery to produce string rep of lists. [Bug 3173086]
| * Completed patch with mucho comments. Merge 8.5.bug_3173086dgp2011-05-103-9/+37
| |
| * mergedgp2011-03-061-0/+38
| |\
| * | Correct flaw in the rewrite handling [list \\\\\}].dgp2011-03-031-0/+4
| | |
* | | comment fixjan.nijtmans2011-05-061-3/+3
|\ \ \
| * \ \ comment fixjan.nijtmans2011-05-061-3/+3
| |\ \ \
| | * | | comment fixjan.nijtmans2011-05-061-3/+3
| | | | |
| | * | | Fixed the shift in line numbers used for testing 'info frame' introduced by ↵andreask2011-04-201-0/+2
| | | | | | | | | | | | | | | | | | | | checkin [79367df0f0] (Mar 2, 2011).
* | | | | merge 8.5dgp2011-05-032-2/+2
|\ \ \ \ \ | |/ / / /
* | | | | Revised TclFindElement() interface.dgp2011-05-021-0/+6
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The final argument had been bracePtr, the address of a boolean var, where the caller can be told whether or not the parsed list element was enclosed in braces. In practice, no callers really care about that. What the callers really want to know is whether the list element value exists as a literal substring of the string being parsed, or whether a call to TclCopyAndCollpase() is needed to produce the list element value. Now the final argument is changed to do what callers actually need. This is a better fit for the calls in tclParse.c, where now a good deal of post-processing checking for "naked backslashes" is no longer necessary. ***POTENTIAL INCOMPATIBILITY*** For any callers calling in via the internal stubs table who really do use the final argument explicitly to check for the enclosing brace scenario. Simply looking for the braces where they must be is the revision available to those callers, and it will backport cleanly. Tests for expanded literals quoting detection.
| * | | | Tests for expanded literals quoting detection.dgp2011-05-021-0/+12
| | | | |
* | | | | Limits on list length were too strict. Revised panics to errors where possible.dgp2011-04-211-1/+1
|\ \ \ \ \ | |/ / / /
* | | | | Test for [Bug 3285472]. Not buggy in trunk.dgp2011-04-121-0/+5
|\ \ \ \ \ | |/ / / /
| * | | | Repair corruption in [string reverse] when string rep invalidation faileddgp2011-04-121-0/+5
| | | | | | | | | | | | | | | to also reset the bytes allocated for string rep to zero [Bug 3285472].
* | | | | revert 6b6ef4e0b1, removing the temporary tests againjan.nijtmans2011-04-121-4/+0
|\ \ \ \ \
* | | | | | insure that 'coroutine eval' runs the initial command in the proper context, ↵mig2011-04-111-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | [Bug 3282869]
* | | | | | Add some (temporary) test cases showing the problem with --export-dynamicjan.nijtmans2011-04-071-0/+4
|/ / / / /
* | | | | Better error-message in case of errors related to setting a variablejan.nijtmans2011-04-043-29/+29
| | | | |
* | | | | More generation of error codes (namespace creation, path normalization,dkf2011-04-031-3/+3
| | | | | | | | | | | | | | | pipeline creation, package handling, procedures, [scan] formats)
* | | | | Use the error messages generated by the variable management code rather thandkf2011-03-282-36/+46
| | | | | | | | | | | | | | | creating our own in [regexp] and [regsub].
* | | | | More test suite updating.dkf2011-03-111-33/+22
| | | | |
* | | | | Fix remaining broken tests (test failures appear non-serious)dkf2011-03-101-2/+2
| | | | |
* | | | | Fix most of the failing tests (some of which were due to breakage done to thedkf2011-03-102-17/+23
| | | | | | | | | | | | | | | parser used in auto_mkIndex; never a good idea to delete the ::tcl NS!)
* | | | | Merge to feature branchdkf2011-03-103-136/+128
|\ \ \ \ \
| * | | | | Make tests in child interpreters report their summary info in the master.dkf2011-03-102-20/+14
| | | | | | | | | | | | | | | | | | Bumped tcltest version to 2.3.3
| * | | | | Update more of the test suite to use Tcltest 2.dkf2011-03-091-116/+114
| | | | | |
* | | | | | Merge to feature branchdkf2011-03-091-6/+17
|\ \ \ \ \ \ | |/ / / / /
| * | | | | * generic/tclNamesp.c: Tighten the detector of nested [namespace code]dgp2011-03-091-6/+17
| |\ \ \ \ \ | | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * tests/namespace.test: quoting that the quoted scripts function properly even in a namespace that contains a custom "namespace" command. [Bug 3202171] * doc/tclvars.n: Formatting fix. Thanks to Pat Thotys.
| | * | | | * generic/tclNamesp.c: Tighten the detector of nested [namespace code] bug_3202171dgp2011-03-091-6/+17
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | * tests/namespace.test: quoting that the quoted scriptsfunction properly even in a namespace that contains a custom "namespace" command. [Bug 3202171]
* | | | | Turn namespace into an ensemble. Not yet on trunk because of some mysterious ↵dkf2011-03-091-2/+2
|/ / / / | | | | | | | | | | | | failures that need resolving...
* | | | Update more of the test suite to use Tcltest 2.dkf2011-03-093-172/+312
| | | |
* | | | Make the assembler code more like Tcl code.dkf2011-03-081-247/+17
| | | |
* | | | * generic/tclParse.c (TclParseBackslash): Correct trunction checks indgp2011-03-061-0/+38
|\ \ \ \ | |/ / / | | | | * tests/parse.test: \x and \u substitutions. [Bug 3200987]
| * | | * generic/tclParse.c (TclParseBackslash): Correct trunction checks indgp2011-03-061-0/+38
| |\ \ \ | | |/ / | | | / | | |/ | |/| * tests/parse.test: \x and \u substitutions. [Bug 3200987]
| | * * generic/tclParse.c (TclParseBackslash): Correct trunction checks indgp2011-03-061-0/+38
| | | | | | | | | * tests/parse.test: \x and \u substitutions. [Bug 3200987]
* | | <verbatim>Kevin B Kenny2011-03-052-0/+3526
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclAssembly.c (new file): * generic/tclBasic.c (Tcl_CreateInterp): * generic/tclInt.h: * tests/assemble.test (new file): * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc: Merged dogeen-assembler-branch into HEAD. Since all functional changes are in the tcl::unsupported namespace, there's no reason to sequester this code on a separate branch. </verbatim>
| * \ \ merge trunkdogeen_assembler_branchKevin B Kenny2011-03-05144-296/+21
| |\ \ \ | |/ / / |/| | |
* | | | Renamed BottomData to TEBCdata, so that the name refers to what it is rather ↵Miguel Sofer2011-03-051-1/+1
| | | | | | | | | | | | | | | | than to its storage location.
* | | | [Bug 3185009]: Keep references to resolved object variables so that an unset ↵dkf2011-03-051-0/+16
|\ \ \ \ | | | | | | | | | | | | | | | doesn't leave any dangling pointers for code to trip over.
| * | | | [Bug 3185009]: Keep references to resolved object variables so that an unset ↵Bug_3185009dkf2011-03-041-0/+16
| | | | | | | | | | | | | | | | | | | | doesn't leave any dangling pointers for code to trip over.