mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-23 22:45:22 +00:00
In NOT_SUPPORTED test case descriptions, show what is not supported
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
35409be6aa
commit
d096445dfe
|
@ -333,7 +333,12 @@ class OpFail:
|
||||||
#pylint: disable=too-many-arguments,too-many-locals
|
#pylint: disable=too-many-arguments,too-many-locals
|
||||||
tc = test_case.TestCase()
|
tc = test_case.TestCase()
|
||||||
pretty_alg = re.sub(r'PSA_ALG_', r'', alg.expression)
|
pretty_alg = re.sub(r'PSA_ALG_', r'', alg.expression)
|
||||||
pretty_reason = reason.name.lower()
|
if reason == self.Reason.NOT_SUPPORTED:
|
||||||
|
short_deps = [re.sub(r'PSA_WANT_ALG_', r'', dep)
|
||||||
|
for dep in not_deps]
|
||||||
|
pretty_reason = '!' + '&'.join(sorted(short_deps))
|
||||||
|
else:
|
||||||
|
pretty_reason = reason.name.lower()
|
||||||
if kt:
|
if kt:
|
||||||
key_type = kt.expression
|
key_type = kt.expression
|
||||||
pretty_type = re.sub(r'PSA_KEY_TYPE_', r'', key_type)
|
pretty_type = re.sub(r'PSA_KEY_TYPE_', r'', key_type)
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue