diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2018-07-11 17:10:16 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2018-07-11 17:10:16 +0900 |
commit | d259acbd325761f791030a2aa04410f65057ef10 (patch) | |
tree | 44c495eef9559fab80363d97c0b5beff8ede7fc4 /tests | |
parent | 1ea79d2a9fec76720158499f208258a43f57dbd8 (diff) | |
download | portable-d259acbd325761f791030a2aa04410f65057ef10.tar.gz portable-d259acbd325761f791030a2aa04410f65057ef10.tar.bz2 portable-d259acbd325761f791030a2aa04410f65057ef10.zip |
Add regress bnaddsub
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 5 | ||||
-rw-r--r-- | tests/Makefile.am | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3ef7b84..5aa87ee 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -64,6 +64,11 @@ if(ENABLE_EXTRATESTS) | |||
64 | add_test(biotest biotest) | 64 | add_test(biotest biotest) |
65 | endif() | 65 | endif() |
66 | 66 | ||
67 | # bnaddsub | ||
68 | add_executable(bnaddsub bnaddsub.c) | ||
69 | target_link_libraries(bnaddsub ${OPENSSL_LIBS}) | ||
70 | add_test(bnaddsub bnaddsub) | ||
71 | |||
67 | # bntest | 72 | # bntest |
68 | if(NOT BUILD_SHARED_LIBS) | 73 | if(NOT BUILD_SHARED_LIBS) |
69 | add_executable(bntest bntest.c) | 74 | add_executable(bntest bntest.c) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index 69d054d..045e361 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -77,6 +77,11 @@ check_PROGRAMS += biotest | |||
77 | biotest_SOURCES = biotest.c | 77 | biotest_SOURCES = biotest.c |
78 | endif | 78 | endif |
79 | 79 | ||
80 | # bnaddsub | ||
81 | TESTS += bnaddsub | ||
82 | check_PROGRAMS += bnaddsub | ||
83 | bnaddsub_SOURCES = bnaddsub.c | ||
84 | |||
80 | # bntest | 85 | # bntest |
81 | TESTS += bntest | 86 | TESTS += bntest |
82 | bntest_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL | 87 | bntest_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL |