summaryrefslogtreecommitdiffstats
path: root/tests/cmdAH.test
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2006-10-01 13:03:56 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2006-10-01 13:03:56 (GMT)
commit1676722753b69ec304ed95a1d75b24501b5445a4 (patch)
treef900c081b3a0024359154f5e9e79527181cff93a /tests/cmdAH.test
parentc66d63df2c14632d90b665b3e576bc44b18e627f (diff)
downloadtcl-1676722753b69ec304ed95a1d75b24501b5445a4.zip
tcl-1676722753b69ec304ed95a1d75b24501b5445a4.tar.gz
tcl-1676722753b69ec304ed95a1d75b24501b5445a4.tar.bz2
bug #1420432 - file mtime fails for directories on windows
Diffstat (limited to 'tests/cmdAH.test')
-rw-r--r--tests/cmdAH.test18
1 files changed, 16 insertions, 2 deletions
diff --git a/tests/cmdAH.test b/tests/cmdAH.test
index 300e217..3f12dd2 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.53 2006/03/21 11:12:28 dkf Exp $
+# RCS: @(#) $Id: cmdAH.test,v 1.54 2006/10/01 13:03:56 patthoyts Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2.1
@@ -1233,7 +1233,6 @@ rename waitForEvenSecondForFAT {}
test cmdAH-24.12 {Tcl_FileObjCmd: mtime and daylight savings} {
set name [file join [temporaryDirectory] clockchange]
-
file delete -force $name
close [open $name w]
set time [clock scan "21:00:00 October 30 2004 GMT"]
@@ -1243,6 +1242,21 @@ test cmdAH-24.12 {Tcl_FileObjCmd: mtime and daylight savings} {
expr {$newmtime == $time ? 1 : "$newmtime != $time"}
} {1}
+# bug 1420432: setting mtime fails for directories on windows.
+test cmdAH-24.13 {Tcl_FileObjCmd: directory mtime} {
+ set dirname [file join [temporaryDirectory] tmp[pid]]
+ file delete -force $dirname
+ file mkdir $dirname
+ set res [catch {
+ set old [file mtime $dirname]
+ file mtime $dirname 0
+ set new [file mtime $dirname]
+ list $new [expr {$old != $new}]
+ } err]
+ file delete -force $dirname
+ list $res $err
+} {0 {0 1}}
+
# owned
test cmdAH-25.1 {Tcl_FileObjCmd: owned} {