summaryrefslogtreecommitdiffstats
path: root/tests/namespace.test
Commit message (Collapse)AuthorAgeFilesLines
* * doc/ParseCmd.3: Implementation of TIP 157. Adds recognitiondgp2003-11-141-52/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/Tcl.n: of the new leading {expand} syntax on words. * generic/tcl.h: Parses such words as the new Tcl_Token type * generic/tclBasic.c: TCL_TOKEN_EXPAND_WORD. Updated Tcl_EvalEx * generic/tclCompile.c: and the bytecode compiler/execution engine * generic/tclCompile.h: to recognize the new token type. New opcodes * generic/tclExecute.c: INST_LIST_VERIFY and INST_INVOKE_EXP and a new * generic/tclParse.c: operand type OPERAND_ULIST1 are defined. Docs * generic/tclTest.c: and tests are included. * tests/basic.test: * tests/compile.test: * tests/parse.test: * library/auto.tcl: Replaced several [eval]s used to perform * library/package.tcl: argument expansion with the new syntax. * library/safe.tcl: In the test files lindex.test and lset.test, * tests/cmdInfo.test: replaced use of [eval] to force direct * tests/encoding.test: string evaluation with use of [testevalex] * tests/execute.test: which more directly and robustly serves the * tests/fCmd.test: same purpose. * tests/http.test: * tests/init.test: * tests/interp.test: * tests/io.test: * tests/ioUtil.test: * tests/iogt.test: * tests/lindex.test: * tests/lset.test: * tests/namespace-old.test: * tests/namespace.test: * tests/pkg.test: * tests/pkgMkIndex.test: * tests/proc.test: * tests/reg.test: * tests/trace.test: * tests/upvar.test: * tests/winConsole.test: * tests/winFCmd.test: FossilOrigin-Name: cbfb8313bae848d0c0a2070542fbc2e4fa371ba2
* TIP#112 ([namespace ensemble] command) implementation.dkf2003-09-291-13/+448
| | | FossilOrigin-Name: e1f27128dc4b6608d039eccc817a87c2a83f535d
* * 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). FossilOrigin-Name: 9ba9324aefb481870bbdcf7c812e149be23ddd02
* Modified test namespace-41.2, added 41.3msofer2001-11-291-3/+17
| | | FossilOrigin-Name: 740493c6b750a2d19de481fe1933cb4519d31a52
* added new test for bug 231259msofer2001-11-291-3/+20
| | | FossilOrigin-Name: 96c877863d525f251a4a8ea3e8445301db150162
* ** upport to 8.4 of mac code changes for 8.3.3 & various newdas2001-11-231-1/+3
| | | | | | | | ** changes for 8.4, some already backported to 8.3.4 (patch #435658) see ChangeLog for details FossilOrigin-Name: f961ecdd17042f83d4cf5b21380c117066ed9b88
* * Corrected tests to better isolate tests indgp2001-09-121-1/+2
| | | | | | one file from influencing tests in other files. [Bug 460591] FossilOrigin-Name: 9b3e82229d0d01e69a06d4b4defe09c3ec600835
* Patch from [Bug: 231259]msofer2001-05-151-1/+15
| | | FossilOrigin-Name: 55d8fa19bf99b4f41e86e5aabcf7965cb61b8792
* Patch for bug #420507msofer2001-05-031-1/+12
| | | FossilOrigin-Name: 1b1c7f5a8667bd0b6ef566c53b71f400e87dd7f3
* Corrected behaviour of [namespace code] (bug #219385, patch #403530)msofer2001-04-071-3/+14
| | | FossilOrigin-Name: be05dac289c878a93efbe98a94e422df3cf27f48
* * doc/namespace.n:hobbs2000-05-111-4/+24
| | | | | | | | * tests/namespace.test: * generic/tclNamesp.c (Tcl_NamespaceObjCmd): added 'namespace exists' command. [Bug: 4665] FossilOrigin-Name: 1570dc22014c7bd9eb11da3946ddec89b2227e4f
* * tests/*.test: Changed all occurances of "namespace importericm2000-04-101-2/+2
| | | | | | ::tcltest" to "namespace import -force ::tcltest" [Bug: 3948]. FossilOrigin-Name: c2f93a113cfcb17a21da67cc20f54ab3f1b9fa3c
* * tests/foreach.test:hobbs2000-04-041-13/+13
| | | | | | | | * tests/namespace.test: * tests/var.test: Added lsorts to avoid random sorted return problems. [Bug: 2682] FossilOrigin-Name: 8394b788c56bb08d62d6770df8e1a892736de3aa
* * tests/httpd: removed unnecessary 'puts stderr "Post Dispatch"'hobbs2000-03-271-3/+3
| | | | | | | | | * tests/namespace.test: * generic/tclNamesp.c (Tcl_Export): added a uniq'ing test to the export list so only one instance of each export pattern would exist in the list. FossilOrigin-Name: 2188389346676c5831880161a1384ddee2407471
* * generic/tclNamesp.c: Undid fix for #956, which broke backwardsericm2000-01-261-8/+1
| | | | | | | | | | | | | | | compatibility. * doc/variable.n: * doc/trace.n: * doc/namespace.n: * doc/info.n: Added further information about differences between "namespace which" and "info exists". * doc/SetErrno.3: Added descriptions of ErrnoId() and ErrnoMsg() functions. FossilOrigin-Name: 234fd734e8d4daeaea295834d47f4f7b419321d5
* * namespace.test: Added test for undefined variables withericm2000-01-211-1/+8
| | | | | | | | | namespace which (bug #956). * tclNamesp.c: Added check for undefined variables in NamespaceWhichCmd (bug #956). FossilOrigin-Name: bb4c1ac9e3af39fe8a8642fa167356115896eb8a
* * tests/info.test:hobbs2000-01-121-3/+3
| | | | | | | | | | | | | * generic/tclCmdIL.c: fixed 'info procs ::namesp::*' behavior (Dejong) * tests/unixFCmd.test: * unix/tclUnixFCmd.c: added support for symbolic permissions setting in SetPermissionsAttribute (file attr $file -perm ...) [Bug: 3970] * tests/utf.test: fixed test that allowed \8 as octal value FossilOrigin-Name: 2ce9534422c6e21c2559669571abd9602adaef0f
* Fixed style problems in many of the test files.rjohnson1999-06-261-9/+9
| | | | | | Fixed bug in pkg.test where defs.tcl was still being used. FossilOrigin-Name: dbfd75f43f496269e869e2fbd58f86e25bdcef4c
* 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-2/+20
| | | FossilOrigin-Name: f3b32fb71c9011ac220779bd9dbe5617c9dc87d9
* Replaced SCCS strings, fixed binary filescore-8-0-3stanton1998-09-141-1/+1
| | | FossilOrigin-Name: 196f92fd17305db5fec1acd59f6926de11e01624
* Added test for namespace import fixwelch1998-08-101-0/+17
| | | FossilOrigin-Name: 1f8732924704816b16b4cf05e75c1ad4c2a655c2
* Initial revisionrjohnson1998-03-261-0/+1080
FossilOrigin-Name: f86c34e38d2a946e0ed196001fd756c57f90791a