diff options
author | Theo Buehler <tb@openbsd.org> | 2024-02-02 00:54:51 -0700 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-02-02 00:54:51 -0700 |
commit | 37d868b0d632e17912bd465cc972481d95bc2e0c (patch) | |
tree | adf2c9e69d00b0bc9e653cfd10fe696bfc75c1ea /tests | |
parent | 008953535b2403fe80484f24748eeca5fc5ffa1c (diff) | |
download | portable-37d868b0d632e17912bd465cc972481d95bc2e0c.tar.gz portable-37d868b0d632e17912bd465cc972481d95bc2e0c.tar.bz2 portable-37d868b0d632e17912bd465cc972481d95bc2e0c.zip |
Link bio_dump test to build
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 d77a9f0..4923cc1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt | |||
@@ -131,6 +131,11 @@ add_executable(bio_chain bio_chain.c) | |||
131 | target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS}) | 131 | target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS}) |
132 | add_test(bio_chain bio_chain) | 132 | add_test(bio_chain bio_chain) |
133 | 133 | ||
134 | # bio_dump | ||
135 | add_executable(bio_dump bio_dump.c) | ||
136 | target_link_libraries(bio_dump ${OPENSSL_TEST_LIBS}) | ||
137 | add_test(bio_dump bio_dump) | ||
138 | |||
134 | # bio_host | 139 | # bio_host |
135 | # this test relies on resolver results that are OS and environment-specific | 140 | # this test relies on resolver results that are OS and environment-specific |
136 | if(ENABLE_EXTRATESTS) | 141 | if(ENABLE_EXTRATESTS) |
diff --git a/tests/Makefile.am b/tests/Makefile.am index a93e7fc..bd119fb 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am | |||
@@ -147,6 +147,11 @@ TESTS += bio_chain | |||
147 | check_PROGRAMS += bio_chain | 147 | check_PROGRAMS += bio_chain |
148 | bio_chain_SOURCES = bio_chain.c | 148 | bio_chain_SOURCES = bio_chain.c |
149 | 149 | ||
150 | # bio_dump | ||
151 | TESTS += bio_dump | ||
152 | check_PROGRAMS += bio_dump | ||
153 | bio_dump_SOURCES = bio_dump.c | ||
154 | |||
150 | # bio_host | 155 | # bio_host |
151 | # this test relies on resolver results that are OS and environment-specific | 156 | # this test relies on resolver results that are OS and environment-specific |
152 | if ENABLE_EXTRATESTS | 157 | if ENABLE_EXTRATESTS |