summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-09-29 11:56:45 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-09-29 11:56:45 (GMT)
commit5ba36e8216796edbcb4498cadcd5625686ff87ae (patch)
tree29c90ef56c4b9dddd63795afd2ce98d84afc1af7
parent345c3ebeb5a50d93a4a607260eaa7948fdea29bd (diff)
parentf6a9b261bca58dedf85b9aeecb7c25bacac3f74f (diff)
downloadtcl-5ba36e8216796edbcb4498cadcd5625686ff87ae.zip
tcl-5ba36e8216796edbcb4498cadcd5625686ff87ae.tar.gz
tcl-5ba36e8216796edbcb4498cadcd5625686ff87ae.tar.bz2
Disable password based zipfs tests on MacOS
-rw-r--r--tests/zipfs.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/zipfs.test b/tests/zipfs.test
index 0b3a886..726b115 100644
--- a/tests/zipfs.test
+++ b/tests/zipfs.test
@@ -1213,23 +1213,23 @@ namespace eval test_ns_zipfs {
} -body {
set fd [open [file join $defaultMountPoint $filename]]
gets $fd
- } -result $result {*}$args
+ } -result $result {*}$args -constraints bbe7c6ff9e
}
# The bug bbe7c6ff9e only manifests on macos
- testConstraint bug-bbe7c6ff9e [expr {$::tcl_platform(os) ne "Darwin"}]
+ testConstraint bbe7c6ff9e [expr {$::tcl_platform(os) ne "Darwin"}]
# NOTE: test-password.zip is the DOS time based encryption header validity check (infozip style)
# test-password2.zip is the CRC based encryption header validity check (pkware style)
testpasswordr plain test-password.zip plain.txt password plaintext
testpasswordr plain-nopass test-password.zip plain.txt "" plaintext
testpasswordr plain-badpass test-password.zip plain.txt badpassword plaintext
- testpasswordr cipher-1 test-password.zip cipher.bin password ciphertext -constraints bug-bbe7c6ff9e
- testpasswordr cipher-2 test-password2.zip cipher.bin password ciphertext -constraints bug-bbe7c6ff9e
+ testpasswordr cipher-1 test-password.zip cipher.bin password ciphertext
+ testpasswordr cipher-2 test-password2.zip cipher.bin password ciphertext
testpasswordr cipher-nopass-1 test-password.zip cipher.bin {} "decryption failed - no password provided" -returnCodes error
testpasswordr cipher-nopass-2 test-password2.zip cipher.bin {} "decryption failed - no password provided" -returnCodes error
testpasswordr cipher-badpass-1 test-password.zip cipher.bin badpassword "invalid password" -returnCodes error
testpasswordr cipher-badpass-2 test-password2.zip cipher.bin badpassword "invalid password" -returnCodes error
- testpasswordr cipher-deflate test-password.zip cipher-deflate.bin password [lseq 100] -constraints bug-bbe7c6ff9e
+ testpasswordr cipher-deflate test-password.zip cipher-deflate.bin password [lseq 100]
testpasswordr cipher-deflate-nopass test-password.zip cipher-deflate.bin {} "decryption failed - no password provided" -returnCodes error
testpasswordr cipher-deflate-badpass test-password.zip cipher-deflate.bin badpassword "invalid password" -returnCodes error
@@ -1259,7 +1259,7 @@ namespace eval test_ns_zipfs {
close $fd
}
cleanup
- } -body $body -result $result {*}$args
+ } -body $body -result $result {*}$args -constraints bbe7c6ff9e
}
# NOTE: test-password.zip is the DOS time based encryption header validity check (infozip style)
# test-password2.zip is the CRC based encryption header validity check (pkware style)