From 38de3e5de11b85bcd3829c3ae7295ace1197df28 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Thu, 3 Oct 2024 17:40:55 +0200 Subject: [PATCH] Remove sample ignore list elements for coverage The ignore list for coverage only has two test cases out of ~10000 that are currently reported as not executed. This is a drop in the sea and not useful. Remove them so that the class can be used generically. A follow-up will construct a comprehensive ignore list. Signed-off-by: Gilles Peskine --- tests/scripts/analyze_outcomes.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py index 87efb1b89c..8123ea1ef5 100755 --- a/tests/scripts/analyze_outcomes.py +++ b/tests/scripts/analyze_outcomes.py @@ -167,14 +167,6 @@ class CoverageTask(Task): # Test cases whose suite and description are matched by an entry in # IGNORED_TESTS are expected to be never executed. # All other test cases are expected to be executed at least once. - IGNORED_TESTS = { - 'test_suite_psa_crypto_metadata': [ - # Algorithm not supported yet - 'Asymmetric signature: pure EdDSA', - # Algorithm not supported yet - 'Cipher: XTS', - ], - } def __init__(self, options) -> None: super().__init__(options)