Change the cpp test to be optional

Remove unnecessary defines from the test.
Test by defining TEST_CPP using makefiles or cmake.
This commit is contained in:
Andrzej Kurek 2018-03-15 05:16:24 -04:00
parent 40741f8ce5
commit 0211c32c9a
4 changed files with 14 additions and 13 deletions

View file

@ -70,7 +70,6 @@ APPS = aes/aescrypt2$(EXEXT) aes/crypt_and_hash$(EXEXT) \
test/ssl_cert_test$(EXEXT) test/benchmark$(EXEXT) \
test/selftest$(EXEXT) test/udp_proxy$(EXEXT) \
test/zeroize$(EXEXT) \
test/header_test$(EXEXT) \
util/pem2der$(EXEXT) util/strerror$(EXEXT) \
x509/cert_app$(EXEXT) x509/crl_app$(EXEXT) \
x509/cert_req$(EXEXT) x509/cert_write$(EXEXT) \
@ -80,6 +79,10 @@ ifdef PTHREAD
APPS += ssl/ssl_pthread_server$(EXEXT)
endif
ifdef TEST_CPP
APPS += test/header_test$(EXEXT)
endif
.SILENT:
.PHONY: all clean list