Skip to content

Commit

Permalink
skip test_xdd_reopen by default
Browse files Browse the repository at this point in the history
  • Loading branch information
calccrypto committed Sep 25, 2023
1 parent d1acc50 commit 4b43886
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/functional/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ set(FUNCTIONAL
test_xdd_lockstep1.sh
test_xdd_lockstep2.sh
test_xdd_pretruncate.sh
test_xdd_reopen.sh
test_xdd_runtime.sh
test_xdd_startoffset.sh
test_xdd_syncwrite.sh
Expand All @@ -22,6 +21,13 @@ if (Time_EXECUTABLE)
test_xdd_startdelay.sh)
endif()

option(TEST_REOPEN "Run Reopen Test" OFF)
if (TEST_REOPEN)
list(APPEND FUNCTIONAL
test_xdd_reopen.sh
)
endif()

foreach(TEST ${FUNCTIONAL})
configure_file("${TEST}" "${TEST}" COPYONLY)
add_test(NAME "${TEST}"
Expand Down

0 comments on commit 4b43886

Please sign in to comment.