Disable dltstest for now

It is not ideal since it reduces test coverage significantly, but we
cannot spend time on restarting some of the CI pipelines all the time.
This commit is contained in:
Theo Buehler 2022-11-08 12:01:34 +01:00
parent cbf8eefa02
commit 0107fed58c
2 changed files with 16 additions and 14 deletions

View File

@ -217,13 +217,14 @@ add_executable(dsatest dsatest.c)
target_link_libraries(dsatest ${OPENSSL_TEST_LIBS})
add_test(dsatest dsatest)
# dtlstest
if(NOT WIN32)
add_executable(dtlstest dtlstest.c)
target_link_libraries(dtlstest ${OPENSSL_TEST_LIBS})
add_test(NAME dtlstest COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/dtlstest.sh)
set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}")
endif()
# XXX This test is too flaky for CI. Disable it until it is fixed.
# # dtlstest
# if(NOT WIN32)
# add_executable(dtlstest dtlstest.c)
# target_link_libraries(dtlstest ${OPENSSL_TEST_LIBS})
# add_test(NAME dtlstest COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/dtlstest.sh)
# set_tests_properties(dtlstest PROPERTIES ENVIRONMENT "srcdir=${TEST_SOURCE_DIR}")
# endif()
# ec_asn1_test
add_executable(ec_asn1_test ec_asn1_test.c)

View File

@ -234,13 +234,14 @@ TESTS += dsatest
check_PROGRAMS += dsatest
dsatest_SOURCES = dsatest.c
# dtlstest
if !HOST_WIN
TESTS += dtlstest.sh
check_PROGRAMS += dtlstest
dtlstest_SOURCES = dtlstest.c
endif
EXTRA_DIST += dtlstest.sh
# XXX this test is too flaky for CI. Disable it until it is fixed.
## dtlstest
#if !HOST_WIN
#TESTS += dtlstest.sh
#check_PROGRAMS += dtlstest
#dtlstest_SOURCES = dtlstest.c
#endif
#EXTRA_DIST += dtlstest.sh
# ec_asn1_test
TESTS += ec_asn1_test