Commit f023662d1b for openssl.org
commit f023662d1bde1fcb7fecf976b25a45afd55734b8
Author: Alexandr Nedvedicky <sashan@openssl.org>
Date: Wed Apr 15 15:01:59 2026 +0200
Make QUIC radix tests friendly to clang-format
this is yet another small fallout from clang-format
style change. This time for radix tests.
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Tomas Mraz <tomas@openssl.foundation>
MergeDate: Fri Apr 17 10:50:07 2026
(Merged from https://github.com/openssl/openssl/pull/30844)
diff --git a/test/radix/quic_tests.c b/test/radix/quic_tests.c
index c0e54825ca..181ba1226b 100644
--- a/test/radix/quic_tests.c
+++ b/test/radix/quic_tests.c
@@ -299,8 +299,8 @@ DEF_SCRIPT(check_cwm, "check stream obeys cwm")
* ============================================================================
*/
static SCRIPT_INFO *const scripts[] = {
- USE(simple_conn)
- USE(simple_thread)
- USE(ssl_poll)
- USE(check_cwm)
+ USE(simple_conn),
+ USE(simple_thread),
+ USE(ssl_poll),
+ USE(check_cwm)
};
diff --git a/test/radix/terp.c b/test/radix/terp.c
index 9e64702908..a89367ce1f 100644
--- a/test/radix/terp.c
+++ b/test/radix/terp.c
@@ -858,4 +858,4 @@ err:
}
#define SCRIPT(name) (&script_info_##name)
-#define USE(name) SCRIPT(name),
+#define USE(name) SCRIPT(name)