aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-06-29 22:49:37 -0500
committerBrent Cook <bcook@openbsd.org>2015-06-29 22:49:37 -0500
commitb7f699ab34684e0dae18949c142824b929388338 (patch)
treee182ee3b5c9d46b540612be22f0827dd6f54ebde
parent89880c2e3a2274ae17b19454e793a491f3c48b0f (diff)
downloadportable-b7f699ab34684e0dae18949c142824b929388338.tar.gz
portable-b7f699ab34684e0dae18949c142824b929388338.tar.bz2
portable-b7f699ab34684e0dae18949c142824b929388338.zip
add cipher_list test
-rw-r--r--tests/Makefile.am6
-rwxr-xr-xupdate.sh1
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index e748912..2e3f068 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -78,6 +78,12 @@ TESTS += chachatest
78check_PROGRAMS += chachatest 78check_PROGRAMS += chachatest
79chachatest_SOURCES = chachatest.c 79chachatest_SOURCES = chachatest.c
80 80
81# cipher_list
82TESTS += cipher_list
83check_PROGRAMS += cipher_list
84cipher_list_SOURCES = cipher_list.c
85noinst_HEADERS = tests.h
86
81# cipherstest 87# cipherstest
82TESTS += cipherstest 88TESTS += cipherstest
83check_PROGRAMS += cipherstest 89check_PROGRAMS += cipherstest
diff --git a/update.sh b/update.sh
index 237939c..008931e 100755
--- a/update.sh
+++ b/update.sh
@@ -238,6 +238,7 @@ $CP $libssl_regress/ssl/testssl tests
238for i in `find $libssl_regress -name '*.c'`; do 238for i in `find $libssl_regress -name '*.c'`; do
239 $CP "$i" tests 239 $CP "$i" tests
240done 240done
241$CP $libssl_regress/unit/tests.h tests
241$CP $libssl_regress/certs/ca.pem tests 242$CP $libssl_regress/certs/ca.pem tests
242$CP $libssl_regress/certs/server.pem tests 243$CP $libssl_regress/certs/server.pem tests
243 244