diff options
author | Brent Cook <busterb@gmail.com> | 2022-06-27 07:14:49 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2022-06-27 07:14:49 -0500 |
commit | 0aa9efe02bbf5b47cfbcea3ae964b5ec5843385b (patch) | |
tree | 33401ba975ed434cd18996b66b55cd051f3291a1 | |
parent | 9bd7894915812dd39d26788b1c4665707ff1c68b (diff) | |
download | portable-0aa9efe02bbf5b47cfbcea3ae964b5ec5843385b.tar.gz portable-0aa9efe02bbf5b47cfbcea3ae964b5ec5843385b.tar.bz2 portable-0aa9efe02bbf5b47cfbcea3ae964b5ec5843385b.zip |
enable new tests
-rw-r--r-- | tests/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
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 | |||
4 | 4 | ||
5 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 | 5 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 |
6 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio | 6 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bio |
7 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/bn | ||
7 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/evp | 8 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/evp |
8 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes | 9 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes |
9 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 | 10 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/x509 |
@@ -48,6 +49,11 @@ arc4randomforktest_SOURCES = arc4randomforktest.c | |||
48 | endif | 49 | endif |
49 | EXTRA_DIST += arc4randomforktest.sh | 50 | EXTRA_DIST += arc4randomforktest.sh |
50 | 51 | ||
52 | # asn1_string_to_utf8 | ||
53 | TESTS += asn1_string_to_utf8 | ||
54 | check_PROGRAMS += asn1_string_to_utf8 | ||
55 | asn1_string_to_utf8_SOURCES = asn1_string_to_utf8.c | ||
56 | |||
51 | # asn1api | 57 | # asn1api |
52 | TESTS += asn1api | 58 | TESTS += asn1api |
53 | check_PROGRAMS += asn1api | 59 | check_PROGRAMS += asn1api |
@@ -111,6 +117,11 @@ check_PROGRAMS += biotest | |||
111 | biotest_SOURCES = biotest.c | 117 | biotest_SOURCES = biotest.c |
112 | endif | 118 | endif |
113 | 119 | ||
120 | # bn_primes | ||
121 | TESTS += bn_primes | ||
122 | check_PROGRAMS += bn_primes | ||
123 | bn_primes_SOURCES = bn_primes.c | ||
124 | |||
114 | # bnaddsub | 125 | # bnaddsub |
115 | TESTS += bnaddsub | 126 | TESTS += bnaddsub |
116 | check_PROGRAMS += bnaddsub | 127 | check_PROGRAMS += bnaddsub |