diff options
author | Theo Buehler <tb@openbsd.org> | 2023-03-18 03:01:43 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2023-03-18 03:01:43 -0600 |
commit | 6b3c90efa9debdcf16ebbda2cfe6b34ff5c34cf4 (patch) | |
tree | ad15154df4383490744a35a5cafa745001d6aad3 /tests | |
parent | d82cc196310fceed5da847f41219e51767a20051 (diff) | |
download | portable-6b3c90efa9debdcf16ebbda2cfe6b34ff5c34cf4.tar.gz portable-6b3c90efa9debdcf16ebbda2cfe6b34ff5c34cf4.tar.bz2 portable-6b3c90efa9debdcf16ebbda2cfe6b34ff5c34cf4.zip |
Unhook the bn_mod_exp_zero test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 7 | ||||
-rw-r--r-- | tests/Makefile.am | 6 |
2 files changed, 0 insertions, 13 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 991076f..27a9600 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -148,13 +148,6 @@ set_source_files_properties(bn_mod_exp.c PROPERTIES COMPILE_FLAGS | |||
148 | target_link_libraries(bn_mod_exp ${OPENSSL_TEST_LIBS}) | 148 | target_link_libraries(bn_mod_exp ${OPENSSL_TEST_LIBS}) |
149 | add_test(bn_mod_exp bn_mod_exp) | 149 | add_test(bn_mod_exp bn_mod_exp) |
150 | 150 | ||
151 | # bn_mod_exp_zero | ||
152 | add_executable(bn_mod_exp_zero bn_mod_exp_zero.c) | ||
153 | set_source_files_properties(bn_mod_exp_zero.c PROPERTIES COMPILE_FLAGS | ||
154 | -ULIBRESSL_INTERNAL) | ||
155 | target_link_libraries(bn_mod_exp_zero ${OPENSSL_TEST_LIBS}) | ||
156 | add_test(bn_mod_exp_zero bn_mod_exp_zero) | ||
157 | |||
158 | # bn_mod_exp2_mont | 151 | # bn_mod_exp2_mont |
159 | add_executable(bn_mod_exp2_mont bn_mod_exp2_mont.c) | 152 | add_executable(bn_mod_exp2_mont bn_mod_exp2_mont.c) |
160 | target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS}) | 153 | target_link_libraries(bn_mod_exp2_mont ${OPENSSL_TEST_LIBS}) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index 2a18b84..b4d50e3 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -165,12 +165,6 @@ check_PROGRAMS += bn_mod_exp | |||
165 | bn_mod_exp_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL | 165 | bn_mod_exp_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL |
166 | bn_mod_exp_SOURCES = bn_mod_exp.c | 166 | bn_mod_exp_SOURCES = bn_mod_exp.c |
167 | 167 | ||
168 | # bn_mod_exp_zero | ||
169 | TESTS += bn_mod_exp_zero | ||
170 | check_PROGRAMS += bn_mod_exp_zero | ||
171 | bn_mod_exp_zero_CPPFLAGS = $(AM_CPPFLAGS) -ULIBRESSL_INTERNAL | ||
172 | bn_mod_exp_zero_SOURCES = bn_mod_exp_zero.c | ||
173 | |||
174 | # bn_mod_exp2_mont | 168 | # bn_mod_exp2_mont |
175 | TESTS += bn_mod_exp2_mont | 169 | TESTS += bn_mod_exp2_mont |
176 | check_PROGRAMS += bn_mod_exp2_mont | 170 | check_PROGRAMS += bn_mod_exp2_mont |