diff options
author | dgp <dgp@users.sourceforge.net> | 2009-03-27 19:14:36 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2009-03-27 19:14:36 (GMT) |
commit | 3af212fe560067545be57a91ec8cd1065ec77eff (patch) | |
tree | 9528714deadda3002cb3a4031da08f7349f8131b /tests/fileName.test | |
parent | 495e84429c8bf25d60aa8194541575305b393c45 (diff) | |
download | tcl-3af212fe560067545be57a91ec8cd1065ec77eff.zip tcl-3af212fe560067545be57a91ec8cd1065ec77eff.tar.gz tcl-3af212fe560067545be57a91ec8cd1065ec77eff.tar.bz2 |
* tests/fileName.test: Tests for [Bug 2710920] to guard against
its appearance.
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index 6e9eb79..b197d2d 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.30.2.10 2009/02/20 18:24:28 dgp Exp $ +# RCS: @(#) $Id: fileName.test,v 1.30.2.11 2009/03/27 19:14:36 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -1860,6 +1860,18 @@ test filename-14.25.1 {type specific globbing} {pcOnly macOnly} { test filename-14.26 {type specific globbing} { list [catch {glob -nocomplain -dir globTest -types {readonly} *} msg] $msg } [list 0 {}] +test filename-14.27 {Bug 2710920} {unixOrPc} { + file tail [lindex [lsort [glob globTest/*/]] 0] +} a1 +test filename-14.28 {Bug 2710920} {unixOrPc} { + file dirname [lindex [lsort [glob globTest/*/]] 0] +} globTest +test filename-14.29 {Bug 2710920} {unixOrPc} { + file extension [lindex [lsort [glob globTest/*/]] 0] +} {} +test filename-14.30 {Bug 2710920} {unixOrPc} { + file rootname [lindex [lsort [glob globTest/*/]] 0] +} globTest/a1/ unset globname |