diff options
author | Theo Buehler <tb@openbsd.org> | 2023-03-11 16:09:56 -0700 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-03-11 16:09:56 -0700 |
commit | 6016c0651c05a14992f092de977ef7329d7196fb (patch) | |
tree | 5680920edcb5a3ab7039d869fd13c6be5473fa04 /tests | |
parent | 1f997d143bdfe3aa0e22f913044c51b0c07a43d6 (diff) | |
download | portable-6016c0651c05a14992f092de977ef7329d7196fb.tar.gz portable-6016c0651c05a14992f092de977ef7329d7196fb.tar.bz2 portable-6016c0651c05a14992f092de977ef7329d7196fb.zip |
Hook in bn_word test
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 ef1b206..991076f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -202,6 +202,11 @@ add_executable(bn_unit bn_unit.c) | |||
202 | target_link_libraries(bn_unit ${OPENSSL_TEST_LIBS}) | 202 | target_link_libraries(bn_unit ${OPENSSL_TEST_LIBS}) |
203 | add_test(bn_unit bn_unit) | 203 | add_test(bn_unit bn_unit) |
204 | 204 | ||
205 | # bn_word | ||
206 | add_executable(bn_word bn_word.c) | ||
207 | target_link_libraries(bn_word ${OPENSSL_TEST_LIBS}) | ||
208 | add_test(bn_word bn_word) | ||
209 | |||
205 | # buffertest | 210 | # buffertest |
206 | add_executable(buffertest buffertest.c) | 211 | add_executable(buffertest buffertest.c) |
207 | target_link_libraries(buffertest ${OPENSSL_TEST_LIBS}) | 212 | target_link_libraries(buffertest ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index dc965bd..2a18b84 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -217,6 +217,11 @@ TESTS += bn_unit | |||
217 | check_PROGRAMS += bn_unit | 217 | check_PROGRAMS += bn_unit |
218 | bn_unit_SOURCES = bn_unit.c | 218 | bn_unit_SOURCES = bn_unit.c |
219 | 219 | ||
220 | # bn_word | ||
221 | TESTS += bn_word | ||
222 | check_PROGRAMS += bn_word | ||
223 | bn_word_SOURCES = bn_word.c | ||
224 | |||
220 | # buffertest | 225 | # buffertest |
221 | TESTS += buffertest | 226 | TESTS += buffertest |
222 | check_PROGRAMS += buffertest | 227 | check_PROGRAMS += buffertest |