summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-01-20 11:23:54 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-01-20 11:23:54 (GMT)
commita4d5f5c006443ee37e695cbf2d7b5030f2fd8e1d (patch)
tree8604999331014687eedb7a800f765e22a0a758ed
parent87c013bbb854749c9ddbadd0c84f695ed214db28 (diff)
downloadtcl-a4d5f5c006443ee37e695cbf2d7b5030f2fd8e1d.zip
tcl-a4d5f5c006443ee37e695cbf2d7b5030f2fd8e1d.tar.gz
tcl-a4d5f5c006443ee37e695cbf2d7b5030f2fd8e1d.tar.bz2
Fix failing zipfs testcases
-rw-r--r--tests/zipfs.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zipfs.test b/tests/zipfs.test
index 8cf10c8..69c682e 100644
--- a/tests/zipfs.test
+++ b/tests/zipfs.test
@@ -1448,9 +1448,9 @@ namespace eval test_ns_zipfs {
testzipfsglob basic-type-d $basicMounts [list -type d $defMountPt/*] [zipfspathsmt $defMountPt testdir]
testzipfsglob basic-type-f $basicMounts [list -type f $defMountPt/*] [zipfspathsmt $defMountPt test]
testzipfsglob basic-type-d-f $basicMounts [list -type {d f} $defMountPt/*] [zipfspathsmt $defMountPt test testdir]
- testzipfsglob basic-type-l $basicMounts [list -type l $defMountPt/*] {}
+ testzipfsglob basic-type-l $basicMounts [list -type l $defMountPt/*] "no files matched glob pattern \"$defMountPt/*\"" -returnCodes error
foreach type {b c l p s} {
- testzipfsglob basic-type-$type $basicMounts [list -type $type $defMountPt/*] {}
+ testzipfsglob basic-type-$type $basicMounts [list -type $type $defMountPt/*] "no files matched glob pattern \"$defMountPt/*\"" -returnCodes error
testzipfsglob basic-type-f-$type $basicMounts [list -type [list f $type] $defMountPt/*] [zipfspathsmt $defMountPt test]
testzipfsglob basic-type-d-$type $basicMounts [list -type [list d $type] $defMountPt/*] [zipfspathsmt $defMountPt testdir]
}