aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2024-02-02 00:54:51 -0700
committerTheo Buehler <tb@openbsd.org>2024-02-02 00:54:51 -0700
commit37d868b0d632e17912bd465cc972481d95bc2e0c (patch)
treeadf2c9e69d00b0bc9e653cfd10fe696bfc75c1ea /tests
parent008953535b2403fe80484f24748eeca5fc5ffa1c (diff)
downloadportable-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.txt5
-rw-r--r--tests/Makefile.am5
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)
131target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS}) 131target_link_libraries(bio_chain ${OPENSSL_TEST_LIBS})
132add_test(bio_chain bio_chain) 132add_test(bio_chain bio_chain)
133 133
134# bio_dump
135add_executable(bio_dump bio_dump.c)
136target_link_libraries(bio_dump ${OPENSSL_TEST_LIBS})
137add_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
136if(ENABLE_EXTRATESTS) 141if(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
147check_PROGRAMS += bio_chain 147check_PROGRAMS += bio_chain
148bio_chain_SOURCES = bio_chain.c 148bio_chain_SOURCES = bio_chain.c
149 149
150# bio_dump
151TESTS += bio_dump
152check_PROGRAMS += bio_dump
153bio_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
152if ENABLE_EXTRATESTS 157if ENABLE_EXTRATESTS