summaryrefslogtreecommitdiffstats
path: root/tests/compExpr.test
Commit message (Collapse)AuthorAgeFilesLines
* 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) FossilOrigin-Name: 9792ff8b65ab77c813359c0e324f501dab14b948
* Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ | | | | | | | | cause more harm than good. Purged them (except in zlib files). FossilOrigin-Name: c64f310d38b977e7ae26a48bcf8bb8c50e453af7
| * 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. FossilOrigin-Name: 79367df0f0e01a96f037f893e889e7cb9b807847
| | * 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. FossilOrigin-Name: 90b4acd7bdab65433169a232124967885c18d972
| | * style revisions to latest commitdgp2008-04-171-2/+6
| | | | | | | | | FossilOrigin-Name: d5019304e852823ed57f821fb42370682a03e139
* | | Clean up of tests and conversion to tcltest 2. Target has been to get init anddkf2011-01-011-94/+121
|/ / | | | | | | | | | | cleanup code out of the test body and into the -setup/-cleanup stanzas. FossilOrigin-Name: 69575bf53bde74f4eadace00ab1253e5814dd3ea
* | test for memory leakdgp2008-01-161-1/+20
| | | | | | FossilOrigin-Name: 39610720d8796bc0dd949525773f8a8ae25f416b
* | merge stable branch onto HEADdgp2007-12-131-1/+1
| | | | | | FossilOrigin-Name: d1f7550cd9bf1343d8505fb99fc5141b58bb88bf
* | * 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: FossilOrigin-Name: 985f1d240af3c5f24259b36641dc385183af8a14
* | * generic/tclCompExpr.c: Register literals found in expressionsdgp2007-08-241-1/+24
| | | | | | | | | | | | | | | | * tests/compExpr.test: to restore literal sharing. Preserve numeric intreps when literals are created for the first time. Correct memleak in ExecConstantExprTree() and add test for the leak. FossilOrigin-Name: 5d79ae73c5e6c02cafadb98d9cedf1d7692ee2dc
* | * tests/compExpr-old.test: Update existing tests to not faildgp2006-08-221-41/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | * tests/compExpr.test: with the new expr parser. * tests/compile.test: * tests/expr-old.test: * tests/expr.test: * tests/for.test: * tests/if.test: * tests/parseExpr.test: * tests/while.test: FossilOrigin-Name: 27c27c8d9187dcf89f5031f5583ee0e814c8c749
* | * tests/compExpr-old.test: add 'oldExprParser' constraint to all testsdas2006-08-021-13/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | * tests/compExpr.test: that depend on the exact format of the error * tests/compile.test: messages of the pre-2006-07-05 expression * tests/expr-old.test: parser. The constraint is on by default (i.e. * tests/expr.test: those test still fail), but it can be turned * tests/for.test: off by passing '-constraints newExprParser' * tests/if.test: to tcltest, which will skip the 196 failing * tests/parseExpr.test: tests in the testsuite that are caused by * tests/while.test: the new expression parser error messages. FossilOrigin-Name: 1c2d45d58da39acb70ba78d645d27c358d89047d
* | * tests/compExpr-old.test: Updated testmathfunctions constraintdgp2006-04-061-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | * tests/compExpr.test: to post-TIP-232 world. * tests/expr-old.test: * tests/expr.test: * tests/info.test: * tests/indexObj.test: Corrected other test errors revealed by * tests/upvar.test: testing outside the tcltest application. FossilOrigin-Name: 3773c450203ea2c98c2e8388031a17fb2bd9fa3e
* | Use test constraints properly instead of looking in tcl_platformdkf2006-03-211-2/+2
| | | | | | | | | | | | | | Consistent method of calling test constraints, and (try to) move constraint setup to the top of the test file FossilOrigin-Name: 36829d55d6ebcac6be4d3d7d887b06650a5b394a
* | Merged kennykb-numerics-branch back to the head; TIPs 132 and 232kennykb2005-05-101-13/+14
| | | | | | FossilOrigin-Name: 1cc2336920c70c6b9f7825b88dec87fc223f2c4e
* | Report compilation errors at runtime, [Patch 103368] by dgp.msofer2004-09-261-5/+5
| | | | | | FossilOrigin-Name: aaebedbc1e035e01307122e554bc620f5ebf1615
* | Massive test cleanup; all tests are run, and constraints are used where ↵dkf2004-05-191-13/+9
|/ | | | | necessary. FossilOrigin-Name: ae1ac5736f8152bee6dd84f96e191a4a097cebb3
* More expr syntax error improvementsdkf2001-12-061-7/+7
| | | FossilOrigin-Name: cd9316932b4481e9d683a9cbd34f3739d82bfbe7
* Improved messages produced on getting a syntax error in an expressiondkf2001-12-041-28/+16
| | | FossilOrigin-Name: 7496369e64da3d9b0b5a574f2fc8ed8c607e81d7
* * tests/*.test: Changed all occurances of "namespace importericm2000-04-101-2/+2
| | | | | | ::tcltest" to "namespace import -force ::tcltest" [Bug: 3948]. FossilOrigin-Name: c2f93a113cfcb17a21da67cc20f54ab3f1b9fa3c
* Modified the tests to use the package tcltestjenn1999-06-261-2/+3
| | | FossilOrigin-Name: fdb0602e41e62bf526806c165dbf3f33a718fd37
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-0/+340
FossilOrigin-Name: f3b32fb71c9011ac220779bd9dbe5617c9dc87d9