diff options
author | Brent Cook <busterb@gmail.com> | 2015-05-06 22:37:41 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2015-05-06 22:39:32 -0500 |
commit | 51bfd4921a18552b72ecc15f282e52116c136554 (patch) | |
tree | cab13bb683a36f9d20f0b4d7f7b924c92cc88c53 /tests/Makefile.am | |
parent | 91f01629b9b1492b2a7447ef7e746f6135a6edbf (diff) | |
download | portable-51bfd4921a18552b72ecc15f282e52116c136554.tar.gz portable-51bfd4921a18552b72ecc15f282e52116c136554.tar.bz2 portable-51bfd4921a18552b72ecc15f282e52116c136554.zip |
add app tests from regress/usr.bin/openssl
These are added directly rather than imported by update.sh since they
require local modifications and its not worth breaking everyone's git
forks yet to import them through cvs2git.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2ed7a44..aed12ff 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -3,6 +3,7 @@ include $(top_srcdir)/Makefile.am.common | |||
3 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes | 3 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/modes |
4 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 | 4 | AM_CPPFLAGS += -I $(top_srcdir)/crypto/asn1 |
5 | AM_CPPFLAGS += -I $(top_srcdir)/ssl | 5 | AM_CPPFLAGS += -I $(top_srcdir)/ssl |
6 | AM_CPPFLAGS += -I $(top_srcdir)/apps | ||
6 | 7 | ||
7 | LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) | 8 | LDADD = $(PLATFORM_LDADD) $(PROG_LDADD) |
8 | LDADD += $(top_builddir)/ssl/libssl.la | 9 | LDADD += $(top_builddir)/ssl/libssl.la |
@@ -192,6 +193,13 @@ TESTS += mont | |||
192 | check_PROGRAMS += mont | 193 | check_PROGRAMS += mont |
193 | mont_SOURCES = mont.c | 194 | mont_SOURCES = mont.c |
194 | 195 | ||
196 | # optionstest | ||
197 | TESTS += optionstest | ||
198 | check_PROGRAMS += optionstest | ||
199 | optionstest_SOURCES = optionstest.c | ||
200 | optionstest_SOURCES += $(top_srcdir)/apps/apps.c | ||
201 | optionstest_SOURCES += $(top_srcdir)/apps/strtonum.c | ||
202 | |||
195 | # pbkdf2 | 203 | # pbkdf2 |
196 | TESTS += pbkdf2 | 204 | TESTS += pbkdf2 |
197 | check_PROGRAMS += pbkdf2 | 205 | check_PROGRAMS += pbkdf2 |
@@ -270,6 +278,18 @@ ssltest_SOURCES = ssltest.c | |||
270 | EXTRA_DIST += ssltest.sh | 278 | EXTRA_DIST += ssltest.sh |
271 | EXTRA_DIST += testssl ca.pem server.pem | 279 | EXTRA_DIST += testssl ca.pem server.pem |
272 | 280 | ||
281 | # testdsa | ||
282 | TESTS += testdsa.sh | ||
283 | EXTRA_DIST += testdsa.sh | ||
284 | |||
285 | # testenc | ||
286 | TESTS += testenc.sh | ||
287 | EXTRA_DIST += testenc.sh | ||
288 | |||
289 | # testrsa | ||
290 | TESTS += testrsa.sh | ||
291 | EXTRA_DIST += testrsa.sh | ||
292 | |||
273 | # timingsafe | 293 | # timingsafe |
274 | TESTS += timingsafe | 294 | TESTS += timingsafe |
275 | check_PROGRAMS += timingsafe | 295 | check_PROGRAMS += timingsafe |