summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2002-07-10 10:48:20 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2002-07-10 10:48:20 (GMT)
commitbf3a542777f9aa1164f705b7be08031012208d76 (patch)
tree100adf6a3a38aaa4ffaf0b432ebfc73a8c7ef369
parent2bd24907d1762ded15a5d294dcc6ad03ed0fd787 (diff)
downloadtcl-bf3a542777f9aa1164f705b7be08031012208d76.zip
tcl-bf3a542777f9aa1164f705b7be08031012208d76.tar.gz
tcl-bf3a542777f9aa1164f705b7be08031012208d76.tar.bz2
Removed exec of unix utilities from cmdAH.test [Bug 579211]
-rw-r--r--ChangeLog2
-rw-r--r--tests/cmdAH.test20
2 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f11d98..3533385 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2002-07-10 Donal K. Fellows <fellowsd@cs.man.ac.uk>
+ * tests/cmdAH.test: Removed [exec] of Unix utilities. [Bug 579211]
+
* tests/expr.test: Added tests to make sure that this works.
* generic/tclExecute.c (ExprCallMathFunc): Functions should also
be able to return wide-ints. [Bug 579284]
diff --git a/tests/cmdAH.test b/tests/cmdAH.test
index b77faea..0c675cc 100644
--- a/tests/cmdAH.test
+++ b/tests/cmdAH.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: cmdAH.test,v 1.27 2002/07/08 08:50:23 vincentdarley Exp $
+# RCS: @(#) $Id: cmdAH.test,v 1.28 2002/07/10 10:48:20 dkf Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -1156,11 +1156,11 @@ test cmdAH-19.11 {Tcl_FileObjCmd: exists} {unixOnly notRoot} {
file delete -force /tmp/tcl.foo.dir
makeDirectory /tmp/tcl.foo.dir
makeFile 12345 /tmp/tcl.foo.dir/file
- exec chmod 000 /tmp/tcl.foo.dir
+ file attributes /tmp/tcl.foo.dir -permissions 0000
set result [file exists /tmp/tcl.foo.dir/file]
- exec chmod 775 /tmp/tcl.foo.dir
+ file attributes /tmp/tcl.foo.dir -permissions 0775
removeFile /tmp/tcl.foo.dir/file
removeDirectory /tmp/tcl.foo.dir
set result
@@ -1171,7 +1171,7 @@ test cmdAH-19.11 {Tcl_FileObjCmd: exists} {unixOnly notRoot} {
catch {testsetplatform $platform}
removeFile $gorpfile
set gorpfile [makeFile "Test string" gorp.file]
-catch {exec chmod 765 $gorpfile}
+file attributes $gorpfile -permissions 0765
# atime
@@ -1426,8 +1426,8 @@ test cmdAH-27.3 {Tcl_FileObjCmd: size} {
catch {testsetplatform $platform}
removeFile $gorpfile
-set gorpFile [makeFile "Test string" gorp.file]
-catch {exec chmod 765 $gorpfile}
+set gorpfile [makeFile "Test string" gorp.file]
+file attributes $gorpfile -permissions 0765
test cmdAH-28.1 {Tcl_FileObjCmd: stat} {
list [catch {file stat _bogus_} msg] $msg $errorCode
@@ -1530,8 +1530,10 @@ test cmdAH-29.3.0 {Tcl_FileObjCmd: delete removes link not file} {unixOnly nonPo
test cmdAH-29.3 {Tcl_FileObjCmd: type} {
file type $gorpfile
} file
-test cmdAH-29.4 {Tcl_FileObjCmd: type} {unixOnly nonPortable} {
- exec ln -s a/b/c $linkfile
+test cmdAH-29.4 {Tcl_FileObjCmd: type} {unixOnly} {
+ catch {file delete $linkfile}
+ # Unlike [exec ln -s], [file link] requires an existing target
+ file link -symbolic $linkfile $gorpfile
set result [file type $linkfile]
file delete $linkfile
set result
@@ -1666,7 +1668,7 @@ catch {unset platform}
# Tcl_ForObjCmd is tested in for.test
-catch {exec chmod 777 $dirfile}
+file attributes $dirfile -permissions 0777
removeDirectory $dirfile
removeFile $gorpfile
# No idea how well [removeFile] copes with links...