diff options
| author | Theo Buehler <tb@openbsd.org> | 2026-01-23 01:18:18 -0700 |
|---|---|---|
| committer | Theo Buehler <tb@openbsd.org> | 2026-01-23 01:18:18 -0700 |
| commit | 022cafc5dc114c731f06f9b73508d001ddc4f825 (patch) | |
| tree | 737d9c8bd84c759be629eef787ffbe257140c1b8 | |
| parent | a9f3c5a1d6f26739d8857076bc3a5d3f612ed2e3 (diff) | |
| download | portable-022cafc5dc114c731f06f9b73508d001ddc4f825.tar.gz portable-022cafc5dc114c731f06f9b73508d001ddc4f825.tar.bz2 portable-022cafc5dc114c731f06f9b73508d001ddc4f825.zip | |
cmake tests: fix two copy-paste errors
| -rw-r--r-- | tests/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fd50dd5..eaf4ed1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
| @@ -244,12 +244,12 @@ target_link_libraries(bn_convert ${OPENSSL_TEST_LIBS}) | |||
| 244 | add_platform_test(bn_convert bn_convert) | 244 | add_platform_test(bn_convert bn_convert) |
| 245 | 245 | ||
| 246 | # bn_ffdh | 246 | # bn_ffdh |
| 247 | add_executable(bn_ffdh bn_cmp.c) | 247 | add_executable(bn_ffdh bn_ffdh.c) |
| 248 | target_link_libraries(bn_ffdh ${OPENSSL_TEST_LIBS}) | 248 | target_link_libraries(bn_ffdh ${OPENSSL_TEST_LIBS}) |
| 249 | add_platform_test(bn_ffdh bn_ffdh) | 249 | add_platform_test(bn_ffdh bn_ffdh) |
| 250 | 250 | ||
| 251 | # bn_gcd | 251 | # bn_gcd |
| 252 | add_executable(bn_gcd bn_cmp.c) | 252 | add_executable(bn_gcd bn_gcd.c) |
| 253 | target_link_libraries(bn_gcd ${OPENSSL_TEST_LIBS}) | 253 | target_link_libraries(bn_gcd ${OPENSSL_TEST_LIBS}) |
| 254 | add_platform_test(bn_gcd bn_gcd) | 254 | add_platform_test(bn_gcd bn_gcd) |
| 255 | 255 | ||
