summaryrefslogtreecommitdiff
path: root/src/test/testing_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/testing_common.c')
-rw-r--r--src/test/testing_common.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/test/testing_common.c b/src/test/testing_common.c
index 3880bca9c5..6957342c62 100644
--- a/src/test/testing_common.c
+++ b/src/test/testing_common.c
@@ -23,6 +23,7 @@
#include "core/mainloop/main.h"
#include "lib/compress/compress.h"
#include "lib/evloop/compat_libevent.h"
+#include "lib/crypt_ops/crypto_init.h"
#include <stdio.h>
#ifdef HAVE_FCNTL_H
@@ -222,6 +223,13 @@ an_assertion_failed(void)
tinytest_set_test_failed_();
}
+void tinytest_postfork(void);
+void
+tinytest_postfork(void)
+{
+ crypto_postfork();
+}
+
/** Main entry point for unit test code: parse the command line, and run
* some unit tests. */
int
@@ -284,7 +292,6 @@ main(int c, const char **v)
printf("Can't initialize crypto subsystem; exiting.\n");
return 1;
}
- crypto_set_tls_dh_prime();
if (crypto_seed_rng() < 0) {
printf("Couldn't seed RNG; exiting.\n");
return 1;