From d1d3fcdfd50ff3868f7160100ab4587e365f81d3 Mon Sep 17 00:00:00 2001 From: Andrea Pappacoda Date: Tue, 19 Apr 2022 13:12:00 +0200 Subject: [PATCH] build(meson): mark *_encrypted_pem as test deps (#1255) Meson only runs required targets. The key_encrypted_pem and cert_encrypted_pem targets added in 020b0db090dc8e197cbedbdc4db7e3120eda5333 and 8191fd8e6c5a27e034a34084afe61f17a9420cfa weren't added to the list of targets required by the test target, so the generation of the encrypted certs was skipped, resulting in the failure of BindServerTest.BindAndListenSeparatelySSLEncryptedKey. --- test/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/meson.build b/test/meson.build index cf86d6b..293ba05 100644 --- a/test/meson.build +++ b/test/meson.build @@ -100,6 +100,8 @@ test( key_pem, cert_pem, cert2_pem, + key_encrypted_pem, + cert_encrypted_pem, rootca_key_pem, rootca_cert_pem, client_key_pem,