From 4541cfd99082642c8f24b2861c2735b1467ef602 Mon Sep 17 00:00:00 2001 From: vincentdarley Date: Thu, 18 Jul 2002 16:35:12 +0000 Subject: winFCmd.test cleanup --- tests/winFCmd.test | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tests/winFCmd.test b/tests/winFCmd.test index 97296e9..0a2d44f 100644 --- a/tests/winFCmd.test +++ b/tests/winFCmd.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: winFCmd.test,v 1.18 2002/07/18 16:32:55 vincentdarley Exp $ +# RCS: @(#) $Id: winFCmd.test,v 1.19 2002/07/18 16:35:12 vincentdarley Exp $ # if {[lsearch [namespace children] ::tcltest] == -1} { @@ -210,12 +210,12 @@ test winFCmd-1.13.1 {TclpRenameFile: errno: EACCES} {pcOnly winOlderThan2000} { cleanup list [catch {testfile mv nul tf1} msg] $msg } {1 EACCES} -test winFCmd-1.14 {TclpRenameFile: errno: EACCES} {95} { +test winFCmd-1.14 {TclpRenameFile: errno: EACCES} {pcOnly 95} { cleanup createfile tf1 list [catch {testfile mv tf1 nul} msg] $msg } {1 EACCES} -test winFCmd-1.15 {TclpRenameFile: errno: EEXIST} {nt} { +test winFCmd-1.15 {TclpRenameFile: errno: EEXIST} {pcOnly nt} { cleanup createfile tf1 list [catch {testfile mv tf1 nul} msg] $msg @@ -242,7 +242,7 @@ test winFCmd-1.19.1 {TclpRenameFile: errno == EACCES} {pcOnly winOlderThan2000} cleanup list [catch {testfile mv nul tf1} msg] $msg } {1 EACCES} -test winFCmd-1.20 {TclpRenameFile: src is dir} {nt} { +test winFCmd-1.20 {TclpRenameFile: src is dir} {pcOnly nt} { # under 95, this would actually succeed and move the current dir out from # under the current process! cleanup @@ -375,7 +375,7 @@ test winFCmd-2.6 {TclpCopyFile: errno: ENOENT} {pcOnly} { createfile tf1 list [catch {testfile cp tf1 ""} msg] $msg } {1 ENOENT} -test winFCmd-2.7 {TclpCopyFile: errno: EACCES} {95} { +test winFCmd-2.7 {TclpCopyFile: errno: EACCES} {pcOnly 95} { cleanup createfile tf1 set fd [open tf2 w] @@ -391,7 +391,7 @@ test winFCmd-2.8.1 {TclpCopyFile: errno: EACCES} {pcOnly nt winOlderThan2000} { cleanup list [catch {testfile cp nul tf1} msg] $msg } {1 EACCES} -test winFCmd-2.9 {TclpCopyFile: errno: ENOENT} {95} { +test winFCmd-2.9 {TclpCopyFile: errno: ENOENT} {pcOnly 95} { cleanup list [catch {testfile cp nul tf1} msg] $msg } {1 ENOENT} @@ -445,7 +445,7 @@ test winFCmd-2.17 {TclpCopyFile: dst is readonly} {pcOnly} { testfile cp tf1 tf2 list [file writable tf2] [contents tf2] } {1 tf1} -test winFCmd-2.18 {TclpCopyFile: still can't copy onto dst} {95} { +test winFCmd-2.18 {TclpCopyFile: still can't copy onto dst} {pcOnly 95} { cleanup createfile tf1 createfile tf2 @@ -517,10 +517,10 @@ test winFCmd-3.11 {TclpDeleteFile: still can't remove path} {pcOnly} { set msg } {1 EACCES} -test winFCmd-4.1 {TclpCreateDirectory: errno: EACCES} {nt cdrom} { +test winFCmd-4.1 {TclpCreateDirectory: errno: EACCES} {pcOnly nt cdrom} { list [catch {testfile mkdir $cdrom/dummy~~.dir} msg] $msg } {1 EACCES} -test winFCmd-4.2 {TclpCreateDirectory: errno: EACCES} {95 cdrom} { +test winFCmd-4.2 {TclpCreateDirectory: errno: EACCES} {pcOnly 95 cdrom} { list [catch {testfile mkdir $cdrom/dummy~~.dir} msg] $msg } {1 ENOSPC} test winFCmd-4.3 {TclpCreateDirectory: errno: EEXIST} {pcOnly} { @@ -592,15 +592,15 @@ test winFCmd-6.9 {TclpRemoveDirectory: errno == EACCES} {pcOnly} { testfile rmdir td1 file exists td1 } {0} -test winFCmd-6.10 {TclpRemoveDirectory: attr == -1} {95} { +test winFCmd-6.10 {TclpRemoveDirectory: attr == -1} {pcOnly 95} { cleanup list [catch {testfile rmdir nul} msg] $msg } {1 {nul EACCES}} -test winFCmd-6.11 {TclpRemoveDirectory: attr == -1} {nt} { +test winFCmd-6.11 {TclpRemoveDirectory: attr == -1} {pcOnly nt} { cleanup list [catch {testfile rmdir /} msg] $msg } {1 {/ EACCES}} -test winFCmd-6.12 {TclpRemoveDirectory: errno == EACCES} {95} { +test winFCmd-6.12 {TclpRemoveDirectory: errno == EACCES} {pcOnly 95} { cleanup createfile tf1 list [catch {testfile rmdir tf1} msg] $msg @@ -612,7 +612,7 @@ test winFCmd-6.13 {TclpRemoveDirectory: write-protected} {pcOnly} { testfile rmdir td1 file exists td1 } {0} -test winFCmd-6.14 {TclpRemoveDirectory: check if empty dir} {95} { +test winFCmd-6.14 {TclpRemoveDirectory: check if empty dir} {pcOnly 95} { cleanup file mkdir td1/td2 list [catch {testfile rmdir td1} msg] $msg @@ -678,11 +678,11 @@ test winFCmd-7.7 {TraverseWinTree: append \ to source if necessary} {pcOnly} { testfile cpdir td1 td2 contents td2/tf1 } {tf1} -test winFCmd-7.8 {TraverseWinTree: append \ to source if necessary} {95 cdrom} { +test winFCmd-7.8 {TraverseWinTree: append \ to source if necessary} {pcOnly 95 cdrom} { # cdrom can return either d:\ or D:/, but we only care about the errcode list [catch {testfile rmdir $cdrom/} msg] [lindex $msg 1] } {1 EEXIST} -test winFCmd-7.9 {TraverseWinTree: append \ to source if necessary} {nt cdrom} { +test winFCmd-7.9 {TraverseWinTree: append \ to source if necessary} {pcOnly nt cdrom} { list [catch {testfile rmdir $cdrom/} msg] [lindex $msg 1] } {1 EACCES} test winFCmd-7.10 {TraverseWinTree: can't read directory: handle == INVALID} \ @@ -711,12 +711,12 @@ test winFCmd-7.13 {TraverseWinTree: append \ to target if necessary} {pcOnly} { testfile cpdir td1 td2 contents td2/tf1 } {tf1} -test winFCmd-7.14 {TraverseWinTree: append \ to target if necessary} {95} { +test winFCmd-7.14 {TraverseWinTree: append \ to target if necessary} {pcOnly 95} { cleanup file mkdir td1 list [catch {testfile cpdir td1 /} msg] $msg } {1 {/ EEXIST}} -test winFCmd-7.15 {TraverseWinTree: append \ to target if necessary} {nt} { +test winFCmd-7.15 {TraverseWinTree: append \ to target if necessary} {pcOnly nt} { cleanup file mkdir td1 list [catch {testfile cpdir td1 /} msg] $msg @@ -790,7 +790,7 @@ test winFCmd-9.1 {TraversalDelete: DOTREE_F} {pcOnly} { createfile td1/tf1 testfile rmdir -force td1 } {} -test winFCmd-9.2 {TraversalDelete: DOTREE_F} {95} { +test winFCmd-9.2 {TraversalDelete: DOTREE_F} {pcOnly 95} { cleanup file mkdir td1 set fd [open td1/tf1 w] -- cgit v0.12