From bac671cd23171bdb91774c1552529ed8dc5efbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 6 Jan 2022 15:37:14 +0100 Subject: [PATCH] Fix the multipart AEAD compliance tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the fork of the compliance test suite, and remove the multipart AEAD tests from the expected failures list. Signed-off-by: Bence Szépkúti --- tests/scripts/test_psa_compliance.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/scripts/test_psa_compliance.py b/tests/scripts/test_psa_compliance.py index ea52c93eb..942fd79a5 100755 --- a/tests/scripts/test_psa_compliance.py +++ b/tests/scripts/test_psa_compliance.py @@ -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():