]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Make QUIC radix tests friendly to clang-format
authorAlexandr Nedvedicky <sashan@openssl.org>
Wed, 15 Apr 2026 13:01:59 +0000 (15:01 +0200)
committerNorbert Pocs <norbertp@openssl.org>
Fri, 17 Apr 2026 10:50:05 +0000 (12:50 +0200)
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)

test/radix/quic_tests.c
test/radix/terp.c

index c0e54825cacc25926cfaedf6843f528b676cf0ed..181ba1226b84cb78ed5c1124675ef959f1139b28 100644 (file)
@@ -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)
 };
index 9e64702908bbf41b71ae4e9f0080ac1f819ddd63..a89367ce1fc41928a92272fc4e64074ae2d3583d 100644 (file)
@@ -858,4 +858,4 @@ err:
 }
 
 #define SCRIPT(name) (&script_info_##name)
-#define USE(name) SCRIPT(name),
+#define USE(name) SCRIPT(name)