summaryrefslogtreecommitdiffstats
path: root/tests/link.test
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.6jan.nijtmans2023-09-271-2/+2
|\
| * Eliminate use of old deprecated trace subcommands from testcasesjan.nijtmans2023-09-271-2/+2
| |
* | "trace variable" -> "trace add variable" in testcases (and documentation)jan.nijtmans2023-06-211-5/+5
| |
* | Use Tcl_Size for ArithSeries.lenjan.nijtmans2022-11-281-1/+1
| |
* | Add (internal) TclNewUIntObj(), and use it to fix TCL_LINK_WIDE_UINT for big ↵jan.nijtmans2022-11-111-2/+2
| | | | | | | | (>= 2^63) integers. With testcase
* | TIP 590: Recommend lowercase Package Namesjan.nijtmans2020-12-041-1/+1
|\ \
| * \ Lesser TIP #590 implementation: Only package renaming, no code changesjan.nijtmans2020-11-061-1/+1
| |\ \
| | * | Case-sensitive package namesjan.nijtmans2020-11-031-2/+2
| |/ /
* | | More ©-sign consolidationjan.nijtmans2020-11-231-1/+1
| | |
* | | Now that all Tcl source files are UTF-8 by default, we can use the ©-sign ↵jan.nijtmans2020-11-231-3/+3
|/ / | | | | | | whenever reasonable.
* | Merge 8.6jan.nijtmans2020-09-041-1/+1
|\ \ | |/
| * Let all test-cases load the "tcltest" package the same way. Depend on ↵jan.nijtmans2020-09-041-1/+1
| | | | | | | | tcltest 2.5, since we never test with earlier tcltest versions
* | Add many missing constraintsjan.nijtmans2019-12-121-47/+47
| |
* | merge 8.6dgp2019-05-031-0/+10
|\ \ | |/
| * memleak demo testdgp2019-05-031-0/+10
| |\
| | * memleak demo testdgp2019-05-031-0/+11
| | |
| | * Dup test namesdgp2018-01-251-1/+1
| | |
* | | More efficient version (after feedback from KBK). Better test too.dkf2019-04-051-1/+2
| | |
* | | Fix unsigned wide linking.dkf2019-04-041-6/+2
| | |
* | | Split up tests to get better focus on what is being testeddkf2019-04-041-152/+205
| | |
* | | refactor; mark broken tests as brokendkf2019-04-031-2/+4
| | |
* | | Some fixes. Still broken on 64-bit systemsdkf2019-04-031-224/+193
| | |
* | | Import of TIP 312 implementationdkf2019-04-031-2/+453
| | |
* | | 0d in LinkVargriffin2017-05-281-0/+21
|/ /
* | Fix [8bd13f07bde6fb0631f27927e36461fdefe8ca95|8bd13f07bd]: Closing tcl pipes ↵jan.nijtmans2017-05-011-1/+1
| | | | | | | | | | prevents windows threads from starting up. Patch by sebres (Dipl. Ing. Sergey G. Brester) (also fix duplicate test-case number in link.test)
* | Fix [39f6304c2e]: Tcl_LinkVar is not tolerant to minus, plus, dotjan.nijtmans2017-01-011-0/+84
|\ \ | |/
| * Little tweak: Decimal dot's should be allowed as well as first part. ↵jan.nijtmans2016-12-231-2/+2
| | | | | | | | Test-case for that as well.
| * Handle other invalid sequences, like "1234e" or "-567e+", that could be the ↵jan.nijtmans2016-12-231-0/+21
| | | | | | | | start of a valid real number.
| * Re-based to core-8-5-branch. jan.nijtmans2016-12-221-0/+63
| |\ | | | | | | Proposed fix for [39f6304c2e90549c209cd11a7920dc9921b9f48e|39f6304c2e], which doesn't need modifications to Double/Integer valid string representations.
| | * Merge trunk. Implement sequences like "0x", "0b" and "0o" as well. And also ↵jan.nijtmans2016-12-221-0/+84
| | |\ | |_|/ |/| | | | | the "." for doubles and floats.
| | * Experimental (partial) fix for ↵jan.nijtmans2016-12-211-6/+6
| |/ |/| | | | | | | | | [39f6304c2e90549c209cd11a7920dc9921b9f48e|39f6304c2e]: Tcl_LinkVar is not tolerant to minus, plus, dot. This handled minus and plus only, not other possible errors. Will need a TIP, because the boolean type is extended to consider '-', '+' and 'o' (necessary for being able to type 'on' or 'off') as valid booleans Dot, and integer prefixes (such as 0x) not handled yet, should be handled completely different.
* | No longer build tcltest.exe to run the tests,but use tclsh86.exe in ↵jan.nijtmans2012-07-291-0/+3
| | | | | | | | combination with tcltest86.dll to do that (Windows only)
* | Update more of the test suite to use Tcltest 2.dkf2011-03-091-63/+91
|/
* Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
|\ | | | | more harm than good. Purged them.
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | more harm than good. Purged them.
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| |
* | * generic/tclIOCmd.c: Revise [open] so that it interprets leadingdgp2007-10-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | zero strings passed as the "permissions" argument as octal numbers, even if Tcl itself no longer parses integers in that way. * unix/tclUnixFCmd.c: Revise the "-permissions" [file attribute] so that it interprets leading zero strings as octal numbers, even if Tcl itself no longer parses integers in that way. * generic/tclCompExpr.c: Corrections to code that produces * generic/tclUtil.c: extended "bad octal" error messages. * tests/cmdAH.test: Test revisions so that tests pass whether or * tests/cmdIL.test: not Tcl parses leading zero strings as octal. * tests/compExpr-old.test: * tests/compExpr.test: * tests/compile.test: * tests/expr-old.test: * tests/expr.test: * tests/incr.test: * tests/io.test: * tests/lindex.test: * tests/link.test: * tests/mathop.test: * tests/parseExpr.test: * tests/set.test: * tests/string.test: * tests/stringComp.test:
* | Use test constraints properly instead of looking in tcl_platformdkf2006-03-211-3/+2
| | | | | | | | | | Consistent method of calling test constraints, and (try to) move constraint setup to the top of the test file
* | D'oh, missed a spotdkf2005-09-081-2/+2
| |
* | Final fixesdkf2005-09-081-3/+3
| |
* | Test suite about fixed up for TIP#254dkf2005-09-081-4/+4
| |
* | Closer to being right...dkf2005-09-081-11/+29
| |
* | More fixingdkf2005-09-081-17/+17
| |
* | A bit more fixing...dkf2005-09-081-15/+17
| |
* | First step to fixing test suitedkf2005-09-081-20/+20
|/
* * Corrections to tcltest and the Tcl test suite so that a testdgp2002-06-221-3/+3
| | | | | | | with options -constraints knownBug -limitConstraints 1 only tests the knownBug tests. Mostly involves replacing direct access to the testConstraints array with calls to the testConstraint command (which requires tcltest version 2).
* TIP#72 implementation. See ChangeLog for details.dkf2002-02-151-113/+119
| | | | | This version builds clean on Solaris/SPARC, with GCC and CC, both with and without threads and both in 32-bit and 64-bit mode.
* * tests/*.test: Changed all occurances of "namespace importericm2000-04-101-2/+2
| | | | ::tcltest" to "namespace import -force ::tcltest" [Bug: 3948].
* Modified the tests to use the package tcltestjenn1999-06-261-2/+3
|
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-3/+24
|