summaryrefslogtreecommitdiffstats
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* * tests/http.test: Clear away the custom [bgerror] when done.dgp2004-05-252-4/+5
| | | | * tests/io.test: Take care to use namespace variables.
* * tests/autoMkindex.test (autoMkindex-5.2): Use variable "result"dgp2004-05-253-7/+9
| | | | | | | that gets cleaned up. * tests/exec.test: Clean up the "path" array. * tests/interp.test (interp-9.3): Initialize res, so prior values cannot make the test fail.
* * tests/execute.test (execute-8.1): Updated to remove the tracedgp2004-05-251-4/+8
| | | | | set on ::errorInfo . When left in place, that trace can cause later tests to fail.
* error in test namingdkf2004-05-251-3/+3
|
* Fix test suite so NFS doesn't consistently cause 8 failures. [Bug 931312]dkf2004-05-251-30/+44
|
* * generic/tclNamesp.c (Tcl_FindNamespaceVar): [Bug 959052] fixed,Miguel Sofer2004-05-231-1/+25
| | | | | | | insuring that no "zombie" variables are found. * generic/tclVar.c (TclLookupSimpleVar): comments re [Bug 736729] (predecessor of [Bug 959052]) removed. * tests/namespace.test: added tests 17.10-12
* * tests/namespace.test (namespace-41.3): removed the {knownBug}Miguel Sofer2004-05-221-2/+2
| | | | | constraint: [Bug 231259] is closed since nov 2001, and the fix of [Bug 729692] (INST_START_CMD) makes the test succeed.
* It seems all NaN handling is non-portable except where the platform isdkf2004-05-201-5/+5
| | | | incredibly constrained.
* Delete limit callbacks properly when the interpreters involved are deleted.dkf2004-05-201-1/+75
|
* Added test based on suggestion by Miguel Soferdkf2004-05-191-1/+17
|
* Oops! Duplicated a -constraints section, which confused tcltestdkf2004-05-191-3/+3
|
* Enable a test of limiting tight loops.dkf2004-05-191-6/+7
|
* Silly errordkf2004-05-191-2/+2
|
* Spelling whoops! Moved constraint declaration to near top of filedkf2004-05-191-2/+3
|
* Massive test cleanup; all tests are run, and constraints are used where ↵dkf2004-05-1931-1227/+977
| | | | necessary.
* corrected test name duplicationdgp2004-05-191-2/+2
|
* fix to 'file dirname' and to fs refCount documentationvincentdarley2004-05-191-1/+13
|
* Fix whitespacedkf2004-05-192-31/+2
|
* Fix whitespacedkf2004-05-194-53/+6
|
* Fix whitespace and add test for case when pwd can generate an errordkf2004-05-191-16/+7
|
* Remove trailing whitespacedkf2004-05-192-26/+2
|
* Use constraints instead of conditional testsdkf2004-05-192-58/+21
|
* Fix whitespacedkf2004-05-191-37/+2
|
* Removed trailing whitespacedkf2004-05-192-26/+2
|
* Converted from conditional tests into constrained testsdkf2004-05-191-108/+129
|
* Remove trailing whitespacedkf2004-05-193-39/+3
|
* Standardize whitespace handlingdkf2004-05-191-20/+1
|
* Convert conditional tests into constrained testsdkf2004-05-192-63/+29
|
* Standardize various minor aspects of test styledkf2004-05-191-23/+12
|
* Convert conditional testing into constraintsdkf2004-05-191-54/+37
|
* Remove trailing whitespacedkf2004-05-191-13/+1
|
* Use constraints, not conditional testsdkf2004-05-191-25/+8
|
* Remove trailing whitespacedkf2004-05-195-64/+4
|
* Use contraints, not conditional tests.dkf2004-05-191-74/+62
|
* Use constraints, not conditional invokation of test.dkf2004-05-191-30/+15
|
* Fixed get.test so it really tests Tcl_GetInt() and uses constraints properly.dkf2004-05-191-70/+40
|
* * compat/strftime.c (_fmt, ISO8601Week): Kevin B Kenny2004-05-181-148/+149
| | | | | | | * doc/clock.n: * tests/clock.test: Major rework to the handling of ISO8601 week numbers. Now passes all the %G and %V test cases on Windows, Linux and Solaris [Bugs #500285, #500389, and #852944]
* Tests of limit-exceeded callbacks and make sure that those callbacks can removedkf2004-05-181-1/+52
| | | | the limits if they see fit (as well as extending them).
* Changed test back to what it used to be in 7.* now that [set] counts as adkf2004-05-171-6/+2
| | | | real command once again. :^)
* Improved TIP#143 tests and now track the number of bytecoded commands better.dkf2004-05-171-11/+17
|
* fix to case sensitive 'file executable' on Windowsvincentdarley2004-05-171-1/+10
|
* 2004-05-14 Kevin B. Kenny <kennykb@acm.org> Kevin B Kenny2004-05-141-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.decls: Promoted TclpLocaltime and TclpGmtime * generic/tclIntDecls.h: from Unix-specific stubs to the generic * generic/tclIntPlatDecls.h: internal Stubs table. Reran 'genstubs' * generic/tclStubInit.c: * unix/tclUnixPort.h: * generic/tclClock.c: Changed a buggy 'GMT' timezone specification to the correct 'GMT0'. [Bug #922848] * unix/tclUnixThrd.c: Moved TclpGmtime and TclpLocaltime to unix/tclUnixTime.c where they belong. * unix/tclUnixTime.c (TclpGmtime, TclpLocaltime, TclpGetTimeZone, ThreadSafeGMTime [removed], ThreadSafeLocalTime [removed], SetTZIfNecessary, CleanupMemory): Restructured to make sure that the same mutex protects all calls to localtime, gmtime, and tzset. Added a check in front of those calls to make sure that the TZ env var hasn't changed since the last call to tzset, and repeat tzset if necessary. [Bug #942078] Removed a buggy test of the Daylight Saving Time information in 'gettimeofday' in favor of applying 'localtime' to a known value. [Bug #922848] * tests/clock.test (clock-3.14): Added test to make sure that changes to $env(TZ) take effect immediately. * win/tclWinTime.c (TclpLocaltime, TclpGmtime): Added porting layer for 'localtime' and 'gmtime' calls.
* Expanding the tests avilable for TIP#143 features.dkf2004-05-141-1/+129
| | | | Now check that basic syntax is verified.
* TIP#143 implementation; still needs docs and more tests...dkf2004-05-131-148/+151
|
* TIP#129 implementation. Probably also much more breakage in the test suite toodkf2004-05-131-68/+648
|
* * generic/tclEncoding.c:rmax2004-05-071-1/+16
| | | | | | * tests/encoding.test: added support and tests for translating embedded null characters between real nullbytes and the internal representation on input/output (Bug #949905).
* vfs glob root volume fixvincentdarley2004-05-071-0/+51
|
* * tests/unixInit.test (unixInit-2.10): Test correction for Mac OSX.dgp2004-05-051-2/+7
| | | | | Be sure to consistently compare normalized path names. Thanks to Steven Abner (tauvan). [Bug 948177]
* * tests/fileSystem.test (filesystem-1.39): replace 'file volumes'hobbs2004-05-042-5/+7
| | | | | * tests/fileName.test (filename-12.9,10): lindex with direct C:/ hard-coded because A:/ was being used and that is empty for most.
* * tests/winFCmd.test (winFCmd-16.12): test volumerelative $HOMEhobbs2004-05-041-1/+10
|