From d110504e84016d3031a3ad1fa3421f22e2d0aaec Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 26 Feb 2026 02:45:52 +0100 Subject: [PATCH] build: add missing `GENERATEDCERTS` files Also alpha sort lists, while here. Follow-up to 2cf19c245eff8ff84e53d6edc27d36bf25439d1b #17493 Closes #20728 --- tests/certs/Makefile.inc | 60 ++++++++++++++++++++++------------------ 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/tests/certs/Makefile.inc b/tests/certs/Makefile.inc index 2131172f4c..06516a09d5 100644 --- a/tests/certs/Makefile.inc +++ b/tests/certs/Makefile.inc @@ -28,36 +28,30 @@ CERTCONFIG_CA = \ test-ca.prm CERTCONFIGS = \ + test-client-cert.prm \ + test-client-eku-only.prm \ test-localhost.prm \ test-localhost.nn.prm \ test-localhost0h.prm \ test-localhost-san-first.prm \ - test-localhost-san-last.prm \ - test-client-cert.prm \ - test-client-eku-only.prm + test-localhost-san-last.prm GENERATEDCERTS = \ test-ca.cacert \ test-ca.crt \ test-ca.key \ - test-localhost.crl \ - test-localhost.crt \ - test-localhost.key \ - test-localhost.pem \ - test-localhost.pub.der \ - test-localhost.pub.pem \ - test-localhost.nn.crl \ - test-localhost.nn.crt \ - test-localhost.nn.key \ - test-localhost.nn.pem \ - test-localhost.nn.pub.der \ - test-localhost.nn.pub.pem \ - test-localhost0h.crl \ - test-localhost0h.crt \ - test-localhost0h.key \ - test-localhost0h.pem \ - test-localhost0h.pub.der \ - test-localhost0h.pub.pem \ + test-client-cert.crl \ + test-client-cert.crt \ + test-client-cert.key \ + test-client-cert.pem \ + test-client-cert.pub.der \ + test-client-cert.pub.pem \ + test-client-eku-only.crl \ + test-client-eku-only.crt \ + test-client-eku-only.key \ + test-client-eku-only.pem \ + test-client-eku-only.pub.der \ + test-client-eku-only.pub.pem \ test-localhost-san-first.crl \ test-localhost-san-first.crt \ test-localhost-san-first.key \ @@ -70,12 +64,24 @@ GENERATEDCERTS = \ test-localhost-san-last.pem \ test-localhost-san-last.pub.der \ test-localhost-san-last.pub.pem \ - test-client-cert.crl \ - test-client-cert.crt \ - test-client-cert.key \ - test-client-cert.pem \ - test-client-cert.pub.der \ - test-client-cert.pub.pem + test-localhost.crl \ + test-localhost.crt \ + test-localhost.key \ + test-localhost.nn.crl \ + test-localhost.nn.crt \ + test-localhost.nn.key \ + test-localhost.nn.pem \ + test-localhost.nn.pub.der \ + test-localhost.nn.pub.pem \ + test-localhost.pem \ + test-localhost.pub.der \ + test-localhost.pub.pem \ + test-localhost0h.crl \ + test-localhost0h.crt \ + test-localhost0h.key \ + test-localhost0h.pem \ + test-localhost0h.pub.der \ + test-localhost0h.pub.pem SRPFILES = \ srp-verifier-conf \