Land #535, add regress bn_to_string
This commit is contained in:
commit
b182399748
1
.gitignore
vendored
1
.gitignore
vendored
@ -57,6 +57,7 @@ tests/asn1evp*
|
|||||||
tests/asn1time*
|
tests/asn1time*
|
||||||
tests/bnaddsub*
|
tests/bnaddsub*
|
||||||
tests/bn_rand_interval*
|
tests/bn_rand_interval*
|
||||||
|
tests/bn_to_string*
|
||||||
tests/cipher*
|
tests/cipher*
|
||||||
tests/explicit_bzero*
|
tests/explicit_bzero*
|
||||||
tests/freenull*
|
tests/freenull*
|
||||||
|
@ -85,6 +85,13 @@ if(NOT BUILD_SHARED_LIBS)
|
|||||||
add_test(bntest bntest)
|
add_test(bntest bntest)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# bn_to_string
|
||||||
|
if(NOT BUILD_SHARED_LIBS)
|
||||||
|
add_executable(bn_to_string bn_to_string.c)
|
||||||
|
target_link_libraries(bn_to_string ${OPENSSL_LIBS})
|
||||||
|
add_test(bn_to_string bn_to_string)
|
||||||
|
endif()
|
||||||
|
|
||||||
# buffertest
|
# buffertest
|
||||||
if(NOT BUILD_SHARED_LIBS)
|
if(NOT BUILD_SHARED_LIBS)
|
||||||
add_executable(buffertest buffertest.c)
|
add_executable(buffertest buffertest.c)
|
||||||
|
@ -93,6 +93,11 @@ bntest_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL
|
|||||||
check_PROGRAMS += bntest
|
check_PROGRAMS += bntest
|
||||||
bntest_SOURCES = bntest.c
|
bntest_SOURCES = bntest.c
|
||||||
|
|
||||||
|
# bn_to_string
|
||||||
|
TESTS += bn_to_string
|
||||||
|
check_PROGRAMS += bn_to_string
|
||||||
|
bn_to_string_SOURCES = bn_to_string.c
|
||||||
|
|
||||||
# buffertest
|
# buffertest
|
||||||
TESTS += buffertest
|
TESTS += buffertest
|
||||||
buffertest_CPPFLAGS = $(AM_CPPFLAGS)
|
buffertest_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user