summaryrefslogtreecommitdiff
path: root/src/irmd/oap
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-07-10 17:09:58 +0200
committerSander Vrijders <sander@ouroboros.rocks>2026-07-19 11:44:35 +0200
commiteeea0006825ac404e20656e148c2db47b454dd6a (patch)
tree64c3451dcd3691c74933d3aab3db11ac978acaed /src/irmd/oap
parent669383b4afac1f0a72c3c1106f1b6d61abc16e78 (diff)
downloadouroboros-eeea0006825ac404e20656e148c2db47b454dd6a.tar.gz
ouroboros-eeea0006825ac404e20656e148c2db47b454dd6a.zip
irmd: Fix oap_test suppression list
he crypto-disabled branch of the test driver referenced two tests that were folded into test_oap_ts_reject_all() and missed newer ones. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'src/irmd/oap')
-rw-r--r--src/irmd/oap/tests/oap_test.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/irmd/oap/tests/oap_test.c b/src/irmd/oap/tests/oap_test.c
index 145b68c7..2e5c975a 100644
--- a/src/irmd/oap/tests/oap_test.c
+++ b/src/irmd/oap/tests/oap_test.c
@@ -1987,6 +1987,9 @@ int oap_test(int argc,
(void) test_oap_roundtrip_auth_only;
(void) test_oap_roundtrip_kex_only;
(void) test_oap_piggyback_data;
+ (void) test_oap_rekey_all;
+ (void) test_oap_rekey_badcache_all;
+ (void) test_oap_rekey_srv_badcache_all;
(void) test_oap_roundtrip;
(void) test_oap_roundtrip_all;
(void) test_oap_roundtrip_md;
@@ -1999,14 +2002,15 @@ int oap_test(int argc,
(void) test_oap_deflated_length_field;
(void) test_oap_nid_without_kex;
(void) test_oap_unsupported_nid;
+ (void) test_oap_unsupported_nid_undefined;
+ (void) test_oap_unsupported_nid_all;
(void) test_oap_cipher_mismatch;
(void) test_oap_srv_enc_cli_none;
(void) test_oap_cli_enc_srv_none;
(void) test_oap_cli_rejects_downgrade;
(void) test_oap_cli_rejects_suite_swap;
(void) test_oap_srv_rejects_weak_kex;
- (void) test_oap_outdated_packet;
- (void) test_oap_future_packet;
+ (void) test_oap_ts_reject_all;
(void) test_oap_replay_packet;
(void) test_oap_replay_generations;
(void) test_oap_missing_root_ca;
@@ -2018,6 +2022,8 @@ int oap_test(int argc,
(void) test_oap_srv_rejects_md_mismatch;
(void) test_oap_server_cert_hidden;
(void) test_oap_sealed_tamper;
+ (void) test_oap_cleartext_echo_tamper;
+ (void) test_oap_response_id_tamper;
(void) test_oap_rekey;
(void) test_oap_rekey_badcache;