diff options
author | Brent Cook <bcook@rapid7.com> | 2017-07-17 05:12:55 -0500 |
---|---|---|
committer | Brent Cook <bcook@rapid7.com> | 2017-07-17 05:12:55 -0500 |
commit | 58ba8785fb364794bf3e0c1dcafd40b747188395 (patch) | |
tree | d86d236940526595b997efb9e050fe06696b6d78 /tests | |
parent | e53af8da67a39de8356bf7c555008a4d20946323 (diff) | |
download | portable-58ba8785fb364794bf3e0c1dcafd40b747188395.tar.gz portable-58ba8785fb364794bf3e0c1dcafd40b747188395.tar.bz2 portable-58ba8785fb364794bf3e0c1dcafd40b747188395.zip |
add tlsext
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0b68776..9341969 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -371,6 +371,11 @@ add_executable(timingsafe timingsafe.c) | |||
371 | target_link_libraries(timingsafe ${TESTS_LIBS}) | 371 | target_link_libraries(timingsafe ${TESTS_LIBS}) |
372 | add_test(timingsafe timingsafe) | 372 | add_test(timingsafe timingsafe) |
373 | 373 | ||
374 | # tlsexttest | ||
375 | add_executable(tlsexttest tlsexttest.c) | ||
376 | target_link_libraries(tlsexttest ${TESTS_LIBS}) | ||
377 | add_test(tlsexttest tlsexttest) | ||
378 | |||
374 | # tlstest | 379 | # tlstest |
375 | set(TLSTEST_SRC tlstest.c) | 380 | set(TLSTEST_SRC tlstest.c) |
376 | check_function_exists(pipe2 HAVE_PIPE2) | 381 | check_function_exists(pipe2 HAVE_PIPE2) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index ff2fd55..816ebc9 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -356,6 +356,12 @@ TESTS += timingsafe | |||
356 | check_PROGRAMS += timingsafe | 356 | check_PROGRAMS += timingsafe |
357 | timingsafe_SOURCES = timingsafe.c | 357 | timingsafe_SOURCES = timingsafe.c |
358 | 358 | ||
359 | # tlsexttest | ||
360 | TESTS += tlsexttest | ||
361 | check_PROGRAMS += tlsexttest | ||
362 | tlsexttest_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL | ||
363 | tlsexttest_SOURCES = tlsexttest.c | ||
364 | |||
359 | # tlstest | 365 | # tlstest |
360 | TESTS += tlstest.sh | 366 | TESTS += tlstest.sh |
361 | check_PROGRAMS += tlstest | 367 | check_PROGRAMS += tlstest |