Hook in bn_word test

This commit is contained in:
Theo Buehler 2023-03-11 16:09:56 -07:00
parent 1f997d143b
commit 6016c0651c
2 changed files with 10 additions and 0 deletions

View File

@ -202,6 +202,11 @@ add_executable(bn_unit bn_unit.c)
target_link_libraries(bn_unit ${OPENSSL_TEST_LIBS})
add_test(bn_unit bn_unit)
# bn_word
add_executable(bn_word bn_word.c)
target_link_libraries(bn_word ${OPENSSL_TEST_LIBS})
add_test(bn_word bn_word)
# buffertest
add_executable(buffertest buffertest.c)
target_link_libraries(buffertest ${OPENSSL_TEST_LIBS})

View File

@ -217,6 +217,11 @@ TESTS += bn_unit
check_PROGRAMS += bn_unit
bn_unit_SOURCES = bn_unit.c
# bn_word
TESTS += bn_word
check_PROGRAMS += bn_word
bn_word_SOURCES = bn_word.c
# buffertest
TESTS += buffertest
check_PROGRAMS += buffertest