From 97bd196d49ec821c2940cb609969fc6f838e722b Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 5 Jul 2024 13:03:37 -0400 Subject: [PATCH] Enable all working tests for kryoptic A few (ECDH, HKDF, etc) should work, but don't, so we keep them disabled for now. Signed-off-by: Simo Sorce --- tests/meson.build | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tests/meson.build b/tests/meson.build index c2dd3770..297aec36 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -115,26 +115,26 @@ foreach t, sources : test_programs endforeach tests = { - 'basic': {'suites': ['softokn', 'softhsm']}, - 'pubkey': {'suites': ['softokn', 'softhsm']}, - 'certs': {'suites': ['softokn', 'softhsm']}, - 'ecc': {'suites': ['softokn', 'softhsm']}, + 'basic': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'pubkey': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'certs': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'ecc': {'suites': ['softokn', 'softhsm', 'kryoptic']}, 'edwards': {'suites': ['softhsm']}, 'ecdh': {'suites': ['softokn']}, - 'democa': {'suites': ['softokn', 'softhsm'], 'is_parallel': false}, - 'digest': {'suites': ['softokn', 'softhsm']}, - 'fork': {'suites': ['softokn', 'softhsm']}, - 'oaepsha2': {'suites': ['softokn']}, + 'democa': {'suites': ['softokn', 'softhsm', 'kryoptic'], 'is_parallel': false}, + 'digest': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'fork': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'oaepsha2': {'suites': ['softokn', 'kryoptic']}, 'hkdf': {'suites': ['softokn']}, - 'rsapss': {'suites': ['softokn', 'softhsm']}, + 'rsapss': {'suites': ['softokn', 'softhsm', 'kryoptic']}, 'rsapssam': {'suites': ['softhsm']}, - 'genkey': {'suites': ['softokn', 'softhsm']}, - 'session': {'suites': ['softokn', 'softhsm']}, - 'rand': {'suites': ['softokn', 'softhsm']}, - 'readkeys': {'suites': ['softokn', 'softhsm']}, - 'tls': {'suites': ['softokn', 'softhsm'], 'is_parallel': false}, - 'uri': {'suites': ['softokn', 'softhsm']}, - 'ecxc': {'suites': ['softhsm']}, + 'genkey': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'session': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'rand': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'readkeys': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'tls': {'suites': ['softokn', 'softhsm', 'kryoptic'], 'is_parallel': false}, + 'uri': {'suites': ['softokn', 'softhsm', 'kryoptic']}, + 'ecxc': {'suites': ['softhsm', 'kryoptic']}, 'cms': {'suites': ['softokn']}, }