diff options
author | vincentdarley <vincentdarley> | 2005-03-15 18:08:20 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-03-15 18:08:20 (GMT) |
commit | 54eca4bde86a1e41d123a643f2aadf95caf433da (patch) | |
tree | 3a60d461d0cd76315e91eb297726993947421dcd /tests/winFCmd.test | |
parent | d1efd01d81c6ab8a8172b42147ecb529524894b3 (diff) | |
download | tcl-54eca4bde86a1e41d123a643f2aadf95caf433da.zip tcl-54eca4bde86a1e41d123a643f2aadf95caf433da.tar.gz tcl-54eca4bde86a1e41d123a643f2aadf95caf433da.tar.bz2 |
fix to file norm, file pathtype on windows reserved filenames
Diffstat (limited to 'tests/winFCmd.test')
-rw-r--r-- | tests/winFCmd.test | 50 |
1 files changed, 49 insertions, 1 deletions
diff --git a/tests/winFCmd.test b/tests/winFCmd.test index 49bae98..937aef3 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.20.2.6 2005/01/17 13:04:44 vincentdarley Exp $ +# RCS: @(#) $Id: winFCmd.test,v 1.20.2.7 2005/03/15 18:08:24 vincentdarley Exp $ # if {[lsearch [namespace children] ::tcltest] == -1} { @@ -1020,6 +1020,54 @@ test winFCmd-16.12 {Windows file normalization} {pcOnly} { cd $pwd unset d dd pwd +test winFCmd-18.1 {Windows reserved path names} -constraints win -body { + file pathtype com1 +} -result "absolute" + +test winFCmd-18.1.2 {Windows reserved path names} -constraints win -body { + file pathtype com4 +} -result "absolute" + +test winFCmd-18.1.3 {Windows reserved path names} -constraints win -body { + file pathtype com5 +} -result "relative" + +test winFCmd-18.1.4 {Windows reserved path names} -constraints win -body { + file pathtype lpt3 +} -result "absolute" + +test winFCmd-18.1.5 {Windows reserved path names} -constraints win -body { + file pathtype lpt4 +} -result "relative" + +test winFCmd-18.2 {Windows reserved path names} -constraints win -body { + file pathtype com1: +} -result "absolute" + +test winFCmd-18.3 {Windows reserved path names} -constraints win -body { + file pathtype COM1 +} -result "absolute" + +test winFCmd-18.4 {Windows reserved path names} -constraints win -body { + file pathtype CoM1: +} -result "absolute" + +test winFCmd-18.5 {Windows reserved path names} -constraints win -body { + file normalize com1: +} -result COM1 + +test winFCmd-18.6 {Windows reserved path names} -constraints win -body { + file normalize COM1: +} -result COM1 + +test winFCmd-18.7 {Windows reserved path names} -constraints win -body { + file normalize cOm1 +} -result COM1 + +test winFCmd-18.8 {Windows reserved path names} -constraints win -body { + file normalize cOm1: +} -result COM1 + # This block of code used to occur after the "return" call, so I'm # commenting it out and assuming that this code is still under construction. #foreach source {tef ted tnf tnd "" nul com1} { |