diff options
author | ashok <ashok> | 2016-07-15 03:12:09 (GMT) |
---|---|---|
committer | ashok <ashok> | 2016-07-15 03:12:09 (GMT) |
commit | 048a4d7e224034d072341b7c9c633801ca9fa19b (patch) | |
tree | 216a9ee21cf2d5a864324f321268a22585d1313b /tests/fileName.test | |
parent | c65f04435b80a065f992d534fcd8bfc9a5a0e8ef (diff) | |
download | tcl-048a4d7e224034d072341b7c9c633801ca9fa19b.zip tcl-048a4d7e224034d072341b7c9c633801ca9fa19b.tar.gz tcl-048a4d7e224034d072341b7c9c633801ca9fa19b.tar.bz2 |
Fix docs and test failures. I had rolled back .PS1 (Powershell files) as being executable without fixing tests and docs.
Diffstat (limited to 'tests/fileName.test')
-rw-r--r-- | tests/fileName.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fileName.test b/tests/fileName.test index a19bd1e..387d844 100644 --- a/tests/fileName.test +++ b/tests/fileName.test @@ -1468,7 +1468,7 @@ if {[testConstraint testsetplatform]} { } test filename-17.2 {windows specific glob with executable} -body { makeDirectory execglob - foreach ext {exe com cmd bat ps1 notexecutable} { + foreach ext {exe com cmd bat notexecutable} { makeFile contents execglob/abc.$ext } lsort [glob -nocomplain -dir [temporaryDirectory]/execglob -tails -types x *] @@ -1477,7 +1477,7 @@ test filename-17.2 {windows specific glob with executable} -body { removeFile execglob/abc.$ext } removeDirectory execglob -} -result {abc.bat abc.cmd abc.com abc.exe abc.ps1} +} -result {abc.bat abc.cmd abc.com abc.exe} test filename-17.3 {Bug 2571597} win { set p /a file pathtype $p |