commit ed3fa3e14b686a4426328a1704e3475c0ed5c3ba
parent 0bd9e27fd2326c66a150a5cce65c2f8ab16b18ce
Author: lash <dev@holbrook.no>
Date: Wed, 26 Mar 2025 03:38:22 +0000
Move init to outer test thread in cert test
Diffstat:
1 file changed, 3 insertions(+), 10 deletions(-)
diff --git a/src/test/test_cert.c b/src/test/test_cert.c
@@ -35,8 +35,6 @@ START_TEST(check_cert_symmetric_nomsg) {
LQCtx ctx;
char buf[4096];
- lq_config_init();
- lq_crypto_init();
lq_set(&ctx, 0, sizeof(LQCtx));
cert = lq_certificate_new(NULL, &ctx, NULL, NULL);
c = 4096;
@@ -58,8 +56,6 @@ START_TEST(check_cert_symmetric_req_nosig) {
LQCtx ctx;
char buf[4096];
- lq_config_init();
- lq_crypto_init();
lq_set(&ctx, 0, sizeof(LQCtx));
req = lq_msg_new(data, strlen(data) + 1);
cert = lq_certificate_new(NULL, &ctx, req, NULL);
@@ -83,8 +79,6 @@ START_TEST(check_cert_symmetric_req_sig) {
LQCtx ctx;
char buf[4096];
- lq_config_init();
- lq_crypto_init();
pk = lq_privatekey_new(privkeydata, 32, passphrase, 32);
lq_set(&ctx, 0, sizeof(LQCtx));
req = lq_msg_new(data, strlen(data) + 1);
@@ -114,8 +108,6 @@ START_TEST(check_cert_symmetric_rsp_onesig) {
LQCtx ctx;
char buf[4096];
- lq_config_init();
- lq_crypto_init();
pk = lq_privatekey_new(privkeydata, 32, passphrase, 32);
lq_set(&ctx, 0, sizeof(LQCtx));
req = lq_msg_new(data, strlen(data) + 1);
@@ -146,8 +138,6 @@ START_TEST(check_cert_symmetric_rsp_bothsig) {
LQCtx ctx;
char buf[4096];
- lq_config_init();
- lq_crypto_init();
pk = lq_privatekey_new(privkeydata, 32, passphrase, 32);
lq_set(&ctx, 0, sizeof(LQCtx));
req = lq_msg_new(data, strlen(data) + 1);
@@ -175,6 +165,9 @@ Suite * common_suite(void) {
Suite *s;
TCase *tc;
+ lq_config_init();
+ lq_crypto_init();
+
s = suite_create("cert");
tc = tcase_create("serialize");
tcase_add_test(tc, check_cert_symmetric_nomsg);