aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--tests/CMakeLists.txt5
-rw-r--r--tests/Makefile.am5
3 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ee7b8f6..3145ffe 100644
--- a/.gitignore
+++ b/.gitignore
@@ -58,6 +58,7 @@ tests/gost2814789t*
58tests/mont* 58tests/mont*
59tests/rfc5280time* 59tests/rfc5280time*
60tests/timingsafe* 60tests/timingsafe*
61tests/tls_ext_alpn*
61tests/*test 62tests/*test
62tests/tests.h 63tests/tests.h
63tests/*test.c 64tests/*test.c
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index a7d2fba..80a248e 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -305,6 +305,11 @@ add_executable(timingsafe timingsafe.c)
305target_link_libraries(timingsafe ${OPENSSL_LIBS}) 305target_link_libraries(timingsafe ${OPENSSL_LIBS})
306add_test(timingsafe timingsafe) 306add_test(timingsafe timingsafe)
307 307
308# tls_ext_alpn
309add_executable(tls_ext_alpn tls_ext_alpn.c)
310target_link_libraries(tls_ext_alpn ${OPENSSL_LIBS})
311add_test(tls_ext_alpn tls_ext_alpn)
312
308# utf8test 313# utf8test
309add_executable(utf8test utf8test.c) 314add_executable(utf8test utf8test.c)
310target_link_libraries(utf8test ${OPENSSL_LIBS}) 315target_link_libraries(utf8test ${OPENSSL_LIBS})
diff --git a/tests/Makefile.am b/tests/Makefile.am
index aad86d9..5ba7b60 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -324,6 +324,11 @@ TESTS += timingsafe
324check_PROGRAMS += timingsafe 324check_PROGRAMS += timingsafe
325timingsafe_SOURCES = timingsafe.c 325timingsafe_SOURCES = timingsafe.c
326 326
327# tls_ext_alpn
328TESTS += tls_ext_alpn
329check_PROGRAMS += tls_ext_alpn
330tls_ext_alpn_SOURCES = tls_ext_alpn.c
331
327# utf8test 332# utf8test
328TESTS += utf8test 333TESTS += utf8test
329check_PROGRAMS += utf8test 334check_PROGRAMS += utf8test