diff options
author | das <das> | 2004-08-26 17:36:56 (GMT) |
---|---|---|
committer | das <das> | 2004-08-26 17:36:56 (GMT) |
commit | f4e842e50190e8c846b6868a38fbba5c129121f9 (patch) | |
tree | aa6cdb00471e6865444d35f0d7e159609f56a824 | |
parent | 1d21fcfd2d8f150847d7d1636ce03746adff3955 (diff) | |
download | tcl-f4e842e50190e8c846b6868a38fbba5c129121f9.zip tcl-f4e842e50190e8c846b6868a38fbba5c129121f9.tar.gz tcl-f4e842e50190e8c846b6868a38fbba5c129121f9.tar.bz2 |
* tests/env.test: macosx fixes.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | tests/env.test | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -5,6 +5,8 @@ * macosx/Makefile: add platform standard locations to default module path roots. [Patch 94288] + * tests/env.test: macosx fixes. + 2004-08-25 Don Porter <dgp@users.sourceforge.net> * tests/timer.test (timer-10.1): Test for Bug 1016167. diff --git a/tests/env.test b/tests/env.test index 60bb0e3..08c0ec1 100644 --- a/tests/env.test +++ b/tests/env.test @@ -11,7 +11,7 @@ # 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.19 2004/06/23 15:36:55 dkf Exp $ +# RCS: @(#) $Id: env.test,v 1.20 2004/08/26 17:37:12 das Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -76,7 +76,7 @@ set printenvScript [makeFile { lrem names ComSpec lrem names "" } - foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH PURE_PROG_NAME DISPLAY SHLIB_PATH } { + foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH PURE_PROG_NAME DISPLAY SHLIB_PATH DYLD_LIBRARY_PATH __CF_USER_TEXT_ENCODING } { lrem names $name } foreach p $names { @@ -106,7 +106,7 @@ foreach name [array names env] { # Added the following lines so that child tcltest can actually find its # library if the initial tcltest is run from a non-standard place. # ('saved' env vars) -foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH DISPLAY SHLIB_PATH} { +foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH DISPLAY SHLIB_PATH DYLD_LIBRARY_PATH} { if {[info exists env2($name)]} { set env($name) $env2($name); } |