diff options
author | vincentdarley <vincentdarley> | 2005-03-15 22:10:58 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-03-15 22:10:58 (GMT) |
commit | 06cfdf8d7716b24e5778cbeaef05d8756622d010 (patch) | |
tree | 2fe8a1bd9a312d6eba4e6df6f81d6302a446b0c2 /tests/winFCmd.test | |
parent | 04c179bb5098db811c7e1fc19fb7c8dbb5c03d56 (diff) | |
download | tcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.zip tcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.tar.gz tcl-06cfdf8d7716b24e5778cbeaef05d8756622d010.tar.bz2 |
more tests and a fix to bug 1158199
Diffstat (limited to 'tests/winFCmd.test')
-rw-r--r-- | tests/winFCmd.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/winFCmd.test b/tests/winFCmd.test index 937aef3..a6221c4 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.7 2005/03/15 18:08:24 vincentdarley Exp $ +# RCS: @(#) $Id: winFCmd.test,v 1.20.2.8 2005/03/15 22:10:58 vincentdarley Exp $ # if {[lsearch [namespace children] ::tcltest] == -1} { @@ -1040,6 +1040,14 @@ test winFCmd-18.1.5 {Windows reserved path names} -constraints win -body { file pathtype lpt4 } -result "relative" +test winFCmd-18.1.6 {Windows reserved path names} -constraints win -body { + file pathtype nul +} -result "absolute" + +test winFCmd-18.1.7 {Windows reserved path names} -constraints win -body { + file pathtype null +} -result "relative" + test winFCmd-18.2 {Windows reserved path names} -constraints win -body { file pathtype com1: } -result "absolute" |