From 0aa9efe02bbf5b47cfbcea3ae964b5ec5843385b Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 27 Jun 2022 07:14:49 -0500 Subject: [PATCH] enable new tests --- tests/Makefile.am | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index 6c88c90..2f2510c 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -4,6 +4,7 @@ AM_CPPFLAGS += -DLIBRESSL_CRYPTO_INTERNAL AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio +AM_CPPFLAGS += -I $(top_srcdir)/crypto/bn AM_CPPFLAGS += -I $(top_srcdir)/crypto/evp AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 @@ -48,6 +49,11 @@ arc4randomforktest_SOURCES = arc4randomforktest.c endif EXTRA_DIST += arc4randomforktest.sh +# asn1_string_to_utf8 +TESTS += asn1_string_to_utf8 +check_PROGRAMS += asn1_string_to_utf8 +asn1_string_to_utf8_SOURCES = asn1_string_to_utf8.c + # asn1api TESTS += asn1api check_PROGRAMS += asn1api @@ -111,6 +117,11 @@ check_PROGRAMS += biotest biotest_SOURCES = biotest.c endif +# bn_primes +TESTS += bn_primes +check_PROGRAMS += bn_primes +bn_primes_SOURCES = bn_primes.c + # bnaddsub TESTS += bnaddsub check_PROGRAMS += bnaddsub