diff options
author | das <das> | 2006-11-10 01:55:56 (GMT) |
---|---|---|
committer | das <das> | 2006-11-10 01:55:56 (GMT) |
commit | 16574baff97aa09147c75398613c01064011cfd1 (patch) | |
tree | 114ba0e1134c58976b2839398fcad99cc1ff4d02 /tests/fCmd.test | |
parent | c7f945aac52601074c20727c95a1f548ed743a98 (diff) | |
download | tcl-16574baff97aa09147c75398613c01064011cfd1.zip tcl-16574baff97aa09147c75398613c01064011cfd1.tar.gz tcl-16574baff97aa09147c75398613c01064011cfd1.tar.bz2 |
* tests/fCmd.test (fCmd-6.26): fix failure when env(HOME) path contains
symlinks.
* macosx/Tcl.xcodeproj/project.pbxproj: remove tclParseExpr.c; when
running testsuite from inside Xcdoe, skip stack-3.1 (it only fails
under those circumstances).
* unix/tcl.m4 (Darwin): suppress linker arch warnings when building
universal for both 32 & 64 bit and no 64bit CoreFoundation is
available; sync with tk tcl.m4 change.
* unix/configure.in: whitespace.
* unix/configure: autoconf-2.59
Diffstat (limited to 'tests/fCmd.test')
-rw-r--r-- | tests/fCmd.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test index be5d311..41dc1b1 100644 --- a/tests/fCmd.test +++ b/tests/fCmd.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: fCmd.test,v 1.56 2006/11/03 00:34:52 hobbs Exp $ +# RCS: @(#) $Id: fCmd.test,v 1.57 2006/11/10 01:55:57 das Exp $ # if {[lsearch [namespace children] ::tcltest] == -1} { @@ -581,7 +581,7 @@ test fCmd-6.26 {CopyRenameOneFile: doesn't use original name} \ file attributes $td2name -permissions 0755 file delete -force ~/td1 set msg -} "1 {error copying \"~/td1\" to \"td1\": \"[file join [file dirname ~] [file tail ~] td1 td2]\": permission denied}" +} "1 {error copying \"~/td1\" to \"td1\": \"[file join $::env(HOME) td1 td2]\": permission denied}" test fCmd-6.27 {CopyRenameOneFile: TclpCopyDirectory failed} \ {unix notRoot xdev} { cleanup /tmp |