summaryrefslogtreecommitdiffstats
path: root/tests/io.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2017-04-17 11:59:35 (GMT)
committerdgp <dgp@users.sourceforge.net>2017-04-17 11:59:35 (GMT)
commit56739b80365465180878af37675a2e8524cc1976 (patch)
treeaf096482d00f431d3b000a159e11fa8e14b24016 /tests/io.test
parent490e5ace3ad5f5790685e654bb03b2fe5e5d2048 (diff)
downloadtcl-56739b80365465180878af37675a2e8524cc1976.zip
tcl-56739b80365465180878af37675a2e8524cc1976.tar.gz
tcl-56739b80365465180878af37675a2e8524cc1976.tar.bz2
Repair revised tests that failed.
Diffstat (limited to 'tests/io.test')
-rw-r--r--tests/io.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/io.test b/tests/io.test
index 7d8c80f..197fc36 100644
--- a/tests/io.test
+++ b/tests/io.test
@@ -5653,7 +5653,7 @@ test io-40.3 {POSIX open access modes: CREAT} {unix umask} {
close $f
file stat $path(test3) stats
format "%#o" [expr $stats(mode)&0o777]
-} [format %#5o [expr {0o666 & ~ $umaskValue}]]
+} [format %#4o [expr {0o666 & ~ $umaskValue}]]
test io-40.4 {POSIX open access modes: CREAT} {
file delete $path(test3)
set f [open $path(test3) w]