From e6be0f8690671b8fdc0b4838846563e62481d7c2 Mon Sep 17 00:00:00 2001 From: Richard T Bonhomme Date: Fri, 25 Aug 2023 17:11:14 +0100 Subject: [PATCH] unit test: use EasyRSA make-safe-ssl to build safessl-easyrsa.cnf EasyTLS dependency on EasyRSA openssl-easyrsa.cnf is due to EasyTLS support for LibreSSL. In future EasyTLS must either create this file itself or invoke EasyRSA make-safe-ssl command. Signed-off-by: Richard T Bonhomme --- dev/easytls-unit-tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/easytls-unit-tests.sh b/dev/easytls-unit-tests.sh index 1389150..e3dfb4c 100755 --- a/dev/easytls-unit-tests.sh +++ b/dev/easytls-unit-tests.sh @@ -118,7 +118,8 @@ warn() { printf "%s\n" "$*"; } build_test_pki () { - for i in "--req-cn='easytls-unit-test' build-ca nopass" \ + for i in "make-safe-ssl" \ + "--req-cn='easytls-unit-test' build-ca nopass" \ "build-server-full s01 nopass" \ "build-server-full s02 nopass" \ "build-server-full s-auth nopass" \