Skip to content
Snippets Groups Projects
Commit a1b29b87 authored by Niels Möller's avatar Niels Möller
Browse files

* testsuite/sexp-format-test.c: Include bignum.h only if HAVE_LIBGMP.

* testsuite/rsa-encrypt-test.c: Include rsa.h only if WITH_PUBLIC_KEY.
* testsuite/pkcs1-test.c: Include pkcs1.h only if WITH_PUBLIC_KEY.

Rev: src/nettle/testsuite/pkcs1-test.c:1.2
Rev: src/nettle/testsuite/rsa-encrypt-test.c:1.4
Rev: src/nettle/testsuite/sexp-format-test.c:1.8
parent ae15d22a
Branches
Tags
No related merge requests found
#include "testutils.h" #include "testutils.h"
#if WITH_PUBLIC_KEY
# include "pkcs1.h" # include "pkcs1.h"
#endif
int int
test_main(void) test_main(void)
......
#include "testutils.h" #include "testutils.h"
#if WITH_PUBLIC_KEY
# include "rsa.h" # include "rsa.h"
#endif
#include "knuth-lfib.h" #include "knuth-lfib.h"
int int
......
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
#include "sexp.h" #include "sexp.h"
#include "buffer.h" #include "buffer.h"
#if HAVE_LIBGMP
# include "bignum.h" # include "bignum.h"
#endif
int int
test_main(void) test_main(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment