summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* merge trunkKevin B Kenny2011-03-0150-2288/+4268
|\
| * * generic/tclOOMethod.c (PushMethodCallFrame): [Bug 3001438]: Makedkf2011-01-181-1/+13
| | | | | | | | | | | | | | sure that the cmdPtr field of the procPtr is correct and relevant at all times so that [info frame] can report sensible information about a frame after a return to it from a recursive call, instead of probably crashing (depending on what else has overwritten the Tcl stack!)
| * [Bug 3148192]: Commands "read/puts" incorrectly interpret parameters.nijtmans2011-01-173-8/+8
| | | | | | | | Improved error-message regarding legacy form.
| * * doc/tclvars.n:Kevin B Kenny2011-01-151-1/+1872
| | | | | | | | | | | | | | | | | | | | * generic/tclStrToD.c: * generic/tclUtil.c (Tcl_PrintDouble): * tests/util.test (util-16.*): Restored full Tcl 8.4 compatibility for the formatting of floating point numbers when $::tcl_precision is not zero. Added compatibility tests to make sure that excess trailing zeroes are suppressed for all eight major code paths. [Bug 3157475]
| * * tests/util.test (util-15.*): Added test cases for floating pointKevin B Kenny2011-01-071-1/+89
| | | | | | | | | | | | | | conversion of the largest denormal and the smallest normal number, to avoid any possibility of the failure suffered by PHP in the last couple of days. (They didn't fail, so no actual functional change.)
| * * tests/package.test, tests/pkg.test: Coalesce these tests into onedkf2011-01-064-1455/+1427
| | | | | | | | | | | | | | file that is concerned with the package system. Convert to use tcltest2 properly. * tests/autoMkindex.test, tests/pkgMkIndex.test: Convert to use tcltest2 properly.
| * Clean up of tests and conversion to tcltest 2. Target has been to get init anddkf2011-01-0120-699/+703
| | | | | | | | cleanup code out of the test body and into the -setup/-cleanup stanzas.
| * * tests/execute.test (execute-11.1): [Bug 3142026]: Added test thatdkf2011-01-011-94/+124
| | | | | | | | fails (with a crash) in an unfixed memdebug build on 64-bit systems.
| * * generic/tclCmdIL.c (Tcl_LsortObjCmd): Fix crash when multiple -indexdkf2010-12-271-1/+4
| | | | | | | | options are used. Simplified memory handling logic.
| * Make sure [fcopy -size ... -command ...] always calls the callback ↵ferrieux2010-12-101-1/+39
| | | | | | | | asynchronously, even for size zero.
| * * tests/fCmd.test: Improve sanity of constraints now that we don'tdkf2010-12-091-22/+39
| | | | | | | | support anything before Windows 2000.
| * * generic/tclCmdAH.c (TclInitFileCmd, TclMakeFileCommandSafe, ...):dkf2010-12-094-195/+169
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Break up [file] into an ensemble. Note that the ensemble is safe in itself, but the majority of its subcommands are not. * generic/tclFCmd.c (FileCopyRename,TclFileDeleteCmd,TclFileAttrsCmd) (TclFileMakeDirsCmd): Adjust these subcommand implementations to work inside an ensemble. (TclFileLinkCmd, TclFileReadLinkCmd, TclFileTemporaryCmd): Move these subcommand implementations from tclCmdAH.c, where they didn't really belong. * generic/tclIOCmd.c (TclChannelNamesCmd): Move to more appropriate source file. * generic/tclEnsemble.c (TclMakeEnsemble): Start of code to make partially-safe ensembles. Currently does not function as expected due to various shortcomings in how safe interpreters are constructed. * tests/cmdAH.test, tests/fCmd.test, tests/interp.test: Test updates to take into account systematization of error messages.
| * * tests/append.test, tests/appendComp.test: Clean up tests so thatdkf2010-12-092-108/+125
| | | | | | | | | | they don't leave things in the global environment (detected when doing -singleproc testing).
| * * tests/fCmd.test, tests/safe.test, tests/uplevel.test,dkf2010-12-075-348/+359
| | | | | | | | | | * tests/upvar.test, tests/var.test: Convert more tests to tcltest2 and factor them to be easier to understand.
| * 2010-11-29 Kevin B. Kenny <kennykb@acm.org>Kevin B Kenny2010-11-281-1/+802
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.decls: * generic/tclInt.h: * generic/tclStrToD.c: * generic/tclTest.c: * generic/tclTomMath.decls: * generic/tclUtil.c: * tests/util.test: * unix/Makefile.in: * win/Makefile.in: * win/makefile.vc: Rewrite of Tcl_PrintDouble and TclDoubleDigits that (a) fixes a severe performance problem with floating point shimmering reported by Karl Lehenbauer, (b) allows TclDoubleDigits to generate the digit strings for 'e' and 'f' format, so that it can be used for tcl_precision != 0 (and possibly later for [format]), (c) fixes [Bug 3120139] by making TclPrintDouble inherently locale-independent, (d) adds test cases to util.test for correct rounding in difficult cases of TclDoubleDigits where fixed- precision results are requested. (e) adds test cases to util.test for the controversial aspects of [Bug 3105247]. As a side effect, two more modules from libtommath (bn_mp_set_int.c and bn_mp_init_set_int.c) are brought into the build, since the new code uses them.
| * * tests/chanio.test, tests/iogt.test, tests/ioTrans.test: Convert moredkf2010-11-243-1303/+1373
| | | | | | | | tests to tcltest2 and factor them to be easier to understand.
| * More conversion of tcltest1 tests to tcltest2dkf2010-11-211-483/+521
| |
| * * tests/chanio.test: Converted many tests to tcltest2 by marking thedkf2010-11-201-1172/+1328
| | | | | | | | setup and cleanup parts as such.
| * [FRQ 491789]: "setargv() doesn't support a unicode cmdline"nijtmans2010-11-181-11/+3
| | | | | | | | | | now implemented for cygwin and mingw32 too. No longer disable tests Tcl_Main-1.4 and 1.6 on Windows, because those now work on all supported platforms.
| * * tests/oo.test: [Bug 3111059]: Added testing that neatly trapped thisdkf2010-11-181-1/+35
| | | | | | | | issue.
| * * doc/interp.n: [3081184] TIP #378.andreas_kupries2010-11-152-38/+159
| | | | | | | | | | | | | | | | | | | | * doc/tclvars.n: Performance fix for TIP #280. * generic/tclBasic.c: * generic/tclExecute.c: * generic/tclInt.h: * generic/tclInterp.c: * tests/info.test: * tests/interp.test:
| * Clarify the tests so that what is being tested is in the body... :-)dkf2010-11-091-7/+10
| |
| * * tests/oo.test: Various tests for memory leaks.dkf2010-11-091-1/+35
| |
| * Revert previous commit at request of KBK.dkf2010-11-091-5/+1
| |
| * Added test case for [Bug #3105247] -NaN?nijtmans2010-11-091-1/+5
| |
| * some more speedups to socket.testrmax2010-11-042-6/+7
| |
| * avoid having to wait for some child processes to time out after all tests ↵rmax2010-11-041-1/+4
| | | | | | | | have been run
| * Rework some of the tests to speed them up by avoiding (supposedly)rmax2010-11-041-29/+27
| | | | | | | | unneeded [after]s.
| * reorder the constraint list per test for clearer make test output of skipped ↵rmax2010-11-041-35/+35
| | | | | | | | tests
| * * tests/socket.test: Run the socket tests three times with thermax2010-11-041-154/+172
| | | | | | | | | | | | | | | | address family set to any, inet, and inet6 respectively. Use constraints to skip the tests if a family is found to be unsupported or not configured on the local machine. Adjust the tests to dynamically adapt to the address family that is being tested.
| * * tests/error.test (error-19.13): Another variation on testing fordkf2010-11-041-1/+23
| | | | | | | | issues in [try] compilation.
| * * generic/tclCmdMZ.c (TryPostBody): Ensure that errors when settingdkf2010-11-031-1/+45
| | | | | | | | | | * tests/error.test (error-19.1[12]): message/opt capture variables get reflected properly to the caller.
| * * generic/tclCompCmds.c (TclCompileCatchCmd):Kevin B Kenny2010-11-031-1/+31
| | | | | | | | | | | | | | | | | | | | * tests/compile.test (compile-3,6): Reworked the compilation of the [catch] command so as to avoid placing any code that might throw an exception (specifically, any initial substitutions or any stores to result or options variables) between the BEGIN_CATCH and END_CATCH but outside the exception range. Added a test case that panics on a stack smash if the change is not made. [Bug #3098302]
| * Improved handling of non-standard module path lists, empty path lists in ↵stwo2010-11-021-2/+2
| | | | | | | | particular.
| * * tests/http.test: Make http-4.15 pass in isolation [Bug 3097490]dgp2010-10-281-2/+2
| |
| * Coverage test for portion of ExprSqrtFunc()dgp2010-10-261-1/+5
| |
| * [Patch 2995655] Report inner contexts in [info errorstack]ferrieux2010-10-202-8/+8
| |
| * * generic/tclZlib.c (Tcl_ZlibStreamGet): [Bug 3081008]: Ensure thatdkf2010-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | when a bytearray gets its internals entangled with zlib for more than a passing moment, that bytearray will never be shimmered away. This increases the amount of copying but is simple to get right, which is a reasonable trade-off. * generic/tclStringObj.c (Tcl_AppendObjToObj): Added some special cases so that most of the time when you build up a bytearray by appending, it actually ends up being a bytearray rather than shimmering back and forth to string. * tests/http11.test (check_crc): Use a simpler way to express the functionality of this procedure.
| * [Bug 3085863]: tclUniData 9 years oldnijtmans2010-10-181-17/+17
| | | | | | | | Added testcases for Unicode 6.0
| * * tests/winPipe.test: Test hygiene with makeFile and removeFile.dgp2010-10-061-11/+16
| |
| * * generic/tclCompile.c: Prevent writing to the intrep fields of adgp2010-10-061-1/+25
| | | | | | | | * tests/subst.test: freed Tcl_Obj. [Bug 3081065]
| * * generic/tclExecute.c (TEBCresume): [Bug 3079830]: Added invalidationdkf2010-10-021-1/+7
| | | | | | | | of string representations of dictionaries in some cases.
| * * doc/socket.n: Document the changes to the [socket] and rmax2010-09-282-123/+119
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [fconfiguyre] commands. * generic/tclInt.h: Introduce TclCreateSocketAddress() as a * generic/tclIOSock.c: replacement for the platform-dependent * unix/tclUnixSock.c: TclpCreateSocketAddress() functions. * unix/tclUnixChan.c: Extend the [socket] and [fconfigure] * unix/tclUnixPort.h: commands to behave as proposed in * win/tclWinSock.c: TIP #162. * win/tclWinPort.h: * compat/fake-rfc2553.c: A compat implementation of the APIs * compat/fake-rfc2553.h: defined in RFC-2553 (getaddrinfo() and friends) on top of the existing gethostbyname() etc. * unix/configure.in: Test whether the fake-implementation is * unix/tcl.m4: needed. * unix/Makefile.in: Add a compile target for fake-rfc2553. * win/configure.in: Allow cross-compilation by default * tests/socket.test: Improve the test suite to make more use of * tests/remote.tcl: randomized ports to reduce interference with tests running in parallel or other services on the machine.
| * * tests/stringComp.test: improved string test coveragehobbs2010-09-251-167/+153
| | | | | | | | | | | | | | * generic/tclExecute.c (TclExecuteByteCode): merge INST_STR_CMP and INST_STR_EQ/INST_STR_NEQ paths. Speeds up eq/ne/[string eq] with obj-aware comparisons and eq/==/ne/!= with length equality check.
| * * tests/execute.test: added execute-10.3 for [Bug 3072640]. TheMiguel Sofer2010-09-221-1/+22
| | | | | | | | test causes a mem failure.
* | * tclAssembly.c:Kevin B Kenny2010-12-161-1/+76
| | | | | | | | | | | | | | * assemble.test: Reworked beginCatch/endCatch handling to enforce the more severe (but more correct) restrictions on catch handling that appeared in the discussion of [Bug 3098302] and in tcl-core traffic beginning about 2010-10-29.
* | mergeKevin B Kenny2010-12-1111-672/+729
| |
* | mergeKevin B Kenny2010-12-0111-3183/+4518
| |
* | mergeKevin B Kenny2010-11-032-3/+33
| |
* | mergeKevin B Kenny2010-10-282-3/+7
| |