diff options
author | vincentdarley <vincentdarley> | 2002-11-13 22:11:38 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-11-13 22:11:38 (GMT) |
commit | fe149949576c0ce56f3649fe2f2072823ba5e701 (patch) | |
tree | 62ea3a2dde7c791ca96c044c35cefabc0c70f126 /tests/fileName.test | |
parent | e624eb0ea85f7ae4a82f916dffab6466c5a26d5a (diff) | |
download | tcl-fe149949576c0ce56f3649fe2f2072823ba5e701.zip tcl-fe149949576c0ce56f3649fe2f2072823ba5e701.tar.gz tcl-fe149949576c0ce56f3649fe2f2072823ba5e701.tar.bz2 |
3 small fixes
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index d9dd9d4..580ec90 100644 --- a/tests/fileName.test +++ b/tests/fileName.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: fileName.test,v 1.26 2002/07/10 13:08:20 dkf Exp $ +# RCS: @(#) $Id: fileName.test,v 1.27 2002/11/13 22:11:41 vincentdarley Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -1816,6 +1816,13 @@ test filename-16.16 {windows specific globbing} {pcOnly} { file tail [lindex [glob "[lindex [glob -types d -dir C:/ *] 0]/.."] 0] } {..} +test filename-17.1 {windows specific special files} {testsetplatform} { + testsetplatform win + list [file pathtype com1] [file pathtype con] [file pathtype lpt3] \ + [file pathtype prn] [file pathtype nul] [file pathtype aux] \ + [file pathtype foo] +} {absolute absolute absolute absolute absolute absolute relative} + # cleanup catch {file delete -force C:/globTest} file delete -force globTest |