summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-09-29 11:42:38 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-09-29 11:42:38 (GMT)
commitf6a9b261bca58dedf85b9aeecb7c25bacac3f74f (patch)
tree99db4ec2e0f790d29a62a106defbb9645656d0ad
parent9dd80347e944bbb2997482bbd042a338e9b6615c (diff)
downloadtcl-f6a9b261bca58dedf85b9aeecb7c25bacac3f74f.zip
tcl-f6a9b261bca58dedf85b9aeecb7c25bacac3f74f.tar.gz
tcl-f6a9b261bca58dedf85b9aeecb7c25bacac3f74f.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 e7f8de9..a05b23f 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)