summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-06-14 13:56:20 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-06-14 13:56:20 (GMT)
commitc9c15e2559923960e068c434c27547ae3d822f6e (patch)
tree29342c9ba4916f219205ab9546973f1dc4644f0f
parent22f4b0e6bb444743a2064150adae56f3a24c1c33 (diff)
downloadtcl-c9c15e2559923960e068c434c27547ae3d822f6e.zip
tcl-c9c15e2559923960e068c434c27547ae3d822f6e.tar.gz
tcl-c9c15e2559923960e068c434c27547ae3d822f6e.tar.bz2
fix fCmd-6.19 on win32, which was broken by [a7e00a0e02]
-rw-r--r--tests/fCmd.test14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/fCmd.test b/tests/fCmd.test
index f2adcef..4775f05 100644
--- a/tests/fCmd.test
+++ b/tests/fCmd.test
@@ -48,15 +48,15 @@ if {[testConstraint unix]} {
set group [lindex $groupList 0]
testConstraint foundGroup 1
}
+}
- proc dev dir {
- file stat $dir stat
- return $stat(dev)
- }
+proc dev dir {
+ file stat $dir stat
+ return $stat(dev)
+}
- if {[catch {makeDirectory tcl[pid] /tmp} tmpspace] == 0} {
- testConstraint xdev [expr {([dev .] != [dev $tmpspace])}]
- }
+if {[catch {makeDirectory tcl[pid] /tmp} tmpspace] == 0} {
+ testConstraint xdev [expr {([dev .] != [dev $tmpspace])}]
}
# Also used in winFCmd...