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 <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2024-10-03 17:40:55 +02:00
parent efe084b2ee
commit 38de3e5de1

View File

@ -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)