diff options
author | dgp <dgp@users.sourceforge.net> | 2001-07-02 20:57:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-07-02 20:57:02 (GMT) |
commit | f95adc31b2b6a26b68eaafb67a0438c3989bc458 (patch) | |
tree | 2fb7932d075bd1e5436fbf6b6f60277e769d7e94 /tests | |
parent | be317297cf2254b62ff4e0aa930c1de525bfbe9b (diff) | |
download | tcl-f95adc31b2b6a26b68eaafb67a0438c3989bc458.zip tcl-f95adc31b2b6a26b68eaafb67a0438c3989bc458.tar.gz tcl-f95adc31b2b6a26b68eaafb67a0438c3989bc458.tar.bz2 |
* tests/unixInit.test (unixInit-2.8): Corrected test for all
absolute pathnames in library path when executable is installed
near root directory to use correct development directory layout.
[Bug 438014]
* tests/unixInit.test (unixInit-2.9):
* unix/tclUnixInit.c (TclpInitLibraryPath):
* win/tclWinInit.c (TclpInitLibraryPath): Corrected buggy
construction of search path entries relative to executable.
Added test for bad construction. [Bug 438014]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unixInit.test | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/tests/unixInit.test b/tests/unixInit.test index 4d62f86..8370d6a 100644 --- a/tests/unixInit.test +++ b/tests/unixInit.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: unixInit.test,v 1.16 2001/06/28 09:54:32 dkf Exp $ +# RCS: @(#) $Id: unixInit.test,v 1.17 2001/07/02 20:57:02 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -194,8 +194,8 @@ test unixInit-2.8 {TclpInitLibraryPath: all absolute pathtype} {unixOnly} { file mkdir /tmp/sparkly file copy $::tcltest::tcltest /tmp/sparkly/tcltest - file mkdir /tmp/library/tcl[info tclversion] - close [open /tmp/library/tcl[info tclversion]/init.tcl w] + file mkdir /tmp/library/ + close [open /tmp/library/init.tcl w] set allAbsolute 1 foreach dir [getlibpath /tmp/sparkly/tcltest] { @@ -206,6 +206,24 @@ test unixInit-2.8 {TclpInitLibraryPath: all absolute pathtype} {unixOnly} { file delete -force /tmp/library set allAbsolute } 1 +test unixInit-2.9 {TclpInitLibraryPath: paths relative to executable} { + unixOnly} { + # Checking for Bug 438014 + file delete -force /tmp/sparkly + file delete -force /tmp/library + file mkdir /tmp/sparkly + file copy $::tcltest::tcltest /tmp/sparkly/tcltest + + file mkdir /tmp/library/ + close [open /tmp/library/init.tcl w] + + set x [lrange [getlibpath /tmp/sparkly/tcltest] 0 4] + + file delete -force /tmp/sparkly + file delete -force /tmp/library + set x +} [list /tmp/lib/tcl[info tclversion] /lib/tcl[info tclversion] \ + /tmp/library /library /tcl[info patchlevel]/library] test unixInit-3.1 {TclpSetInitialEncodings} {unixOnly installedTcl} { set env(LANG) C |