Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | changed nonexistent winOnly constraint to ill-named pcOnly constraint. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-1-branch-old |
Files: | files | file ages | folders |
SHA1: |
ba41bf3793e9b5c59cfab65dab8c6689 |
User & Date: | hershey 1999-04-07 02:46:18.000 |
Context
1999-04-07
| ||
03:21 | Fixed broken man page. Renamed so it matches the C functio name. check-in: 52e302c7aa user: stanton tags: core-8-1-branch-old | |
02:46 | changed nonexistent winOnly constraint to ill-named pcOnly constraint. check-in: ba41bf3793 user: hershey tags: core-8-1-branch-old | |
02:38 | fixed bad pkga.so constraint check-in: ef1faecd65 user: hershey tags: core-8-1-branch-old | |
Changes
Changes to tests/env.test.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Commands covered: none (tests environment variable implementation) # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994 Sun Microsystems, Inc. # Copyright (c) 1998-1999 by Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Commands covered: none (tests environment variable implementation) # # This file contains a collection of tests for one or more of the Tcl # built-in commands. Sourcing this file into Tcl runs the tests and # generates output for errors. No output means no errors were found. # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994 Sun Microsystems, Inc. # Copyright (c) 1998-1999 by Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: env.test,v 1.1.2.9 1999/04/07 02:46:18 hershey Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] } # # These tests will run on any platform (and indeed crashed |
︙ | ︙ | |||
224 225 226 227 228 229 230 | i eval { set env(THIS_SHOULD_EXIST) a} set result [info exists env(THIS_SHOULD_EXIST)] lappend result [set env(THIS_SHOULD_EXIST)] lappend result [info exists env(THIS_SHOULD_EXIST)] interp delete i set result } {1 a 1} | | | 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | i eval { set env(THIS_SHOULD_EXIST) a} set result [info exists env(THIS_SHOULD_EXIST)] lappend result [set env(THIS_SHOULD_EXIST)] lappend result [info exists env(THIS_SHOULD_EXIST)] interp delete i set result } {1 a 1} test env-5.5 {corner cases - cannot have null entries on Windows} {pcOnly} { set env() a catch {set env()} } {1} # Restore the environment variables at the end of the test. |
︙ | ︙ |