diff options
author | vincentdarley <vincentdarley> | 2006-03-19 22:47:28 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2006-03-19 22:47:28 (GMT) |
commit | 00b1a8979ad1c8e2583413ee6e4819a2c3832694 (patch) | |
tree | c4a57331f774fdba513a729f09ae6776ac109c00 /tests/tcltest.test | |
parent | df0bb3a374381fccf95a2af58d83f82f58284b8b (diff) | |
download | tcl-00b1a8979ad1c8e2583413ee6e4819a2c3832694.zip tcl-00b1a8979ad1c8e2583413ee6e4819a2c3832694.tar.gz tcl-00b1a8979ad1c8e2583413ee6e4819a2c3832694.tar.bz2 |
backport of file writable fixes
Diffstat (limited to 'tests/tcltest.test')
-rwxr-xr-x | tests/tcltest.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/tcltest.test b/tests/tcltest.test index 7d3b1c4..c40826b 100755 --- a/tests/tcltest.test +++ b/tests/tcltest.test @@ -6,7 +6,7 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: tcltest.test,v 1.37.2.10 2005/02/25 22:37:52 dgp Exp $ +# RCS: @(#) $Id: tcltest.test,v 1.37.2.11 2006/03/19 22:47:30 vincentdarley Exp $ # Note that there are several places where the value of # tcltest::currentFailure is stored/reset in the -setup/-cleanup @@ -558,6 +558,7 @@ switch $tcl_platform(platform) { } default { catch {file attributes $notWriteableDir -readonly 1} + catch {testchmod 000 $notWriteableDir} } } |