Merge pull request #5388 from bensze01/multipart_aead_compliance_tests

Fix the multipart AEAD compliance tests
This commit is contained in:
Gilles Peskine 2022-01-06 19:11:28 +01:00 committed by GitHub
commit d1d0b41fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,10 +33,6 @@ import sys
# Test number 2xx corresponds to the files in the folder
# psa-arch-tests/api-tests/dev_apis/crypto/test_c0xx
EXPECTED_FAILURES = {
# Multipart CCM is not supported.
# - Tracked in issue #3721
252, 253, 254, 255, 256, 257, 258, 259, 261,
# psa_hash_suspend() and psa_hash_resume() are not supported.
# - Tracked in issue #3274
262, 263
@ -51,7 +47,7 @@ EXPECTED_FAILURES = {
#
# Web URL: https://github.com/bensze01/psa-arch-tests/tree/fixes-for-mbedtls-3
PSA_ARCH_TESTS_REPO = 'https://github.com/bensze01/psa-arch-tests.git'
PSA_ARCH_TESTS_REF = 'fixes-for-mbedtls-3'
PSA_ARCH_TESTS_REF = 'fix-multipart-aead'
#pylint: disable=too-many-branches,too-many-statements
def main():