diff options
author | das <das> | 2005-05-24 04:44:30 (GMT) |
---|---|---|
committer | das <das> | 2005-05-24 04:44:30 (GMT) |
commit | 8af47f49023ddb3e0743fe10acd99bbe66d80fe1 (patch) | |
tree | f077e2d0a3bd453a998f97274fe3bbafbef69a07 /tests | |
parent | 1f8ced7c37e71e5e0c6563a50e8aa53ea2242fa5 (diff) | |
download | tcl-8af47f49023ddb3e0743fe10acd99bbe66d80fe1.zip tcl-8af47f49023ddb3e0743fe10acd99bbe66d80fe1.tar.gz tcl-8af47f49023ddb3e0743fe10acd99bbe66d80fe1.tar.bz2 |
* tests/env.test: added DYLD_FRAMEWORK_PATH to the list of env vars
that need to be handled specially.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/env.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/env.test b/tests/env.test index af23dfd..b8f2def 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.17.2.1 2004/08/26 17:37:42 das Exp $ +# RCS: @(#) $Id: env.test,v 1.17.2.2 2005/05/24 04:44:32 das Exp $ package require tcltest 2 namespace import -force ::tcltest::* @@ -75,7 +75,7 @@ set printenvScript [makeFile { lrem names ComSpec lrem names "" } - foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH PURE_PROG_NAME DISPLAY SHLIB_PATH DYLD_LIBRARY_PATH __CF_USER_TEXT_ENCODING } { + foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH PURE_PROG_NAME DISPLAY SHLIB_PATH DYLD_LIBRARY_PATH DYLD_FRAMEWORK_PATH __CF_USER_TEXT_ENCODING } { lrem names $name } foreach p $names { @@ -105,7 +105,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 DYLD_LIBRARY_PATH} { +foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH DISPLAY SHLIB_PATH DYLD_LIBRARY_PATH DYLD_FRAMEWORK_PATH} { if {[info exists env2($name)]} { set env($name) $env2($name); } |