Skip to content

Commit

Permalink
Enable all working tests for kryoptic
Browse files Browse the repository at this point in the history
A few (ECDH, HKDF, etc) should work, but don't, so we keep them disabled
for now.

Signed-off-by: Simo Sorce <[email protected]>
  • Loading branch information
simo5 committed Jul 8, 2024
1 parent aca58cb commit 6b3f367
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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']},
}

Expand Down

0 comments on commit 6b3f367

Please sign in to comment.