This is an automated email from the ASF dual-hosted git repository. astitcher pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
commit b203859de772298b032a92ef0549be6a2a47d673 Author: Andrew Stitcher <astitc...@apache.org> AuthorDate: Fri Jul 14 17:47:14 2023 -0400 NO-JIRA: Rename CMake FDLIMIT option for consistency Now called ENABLE_FDLIMIT_TEST --- c/tests/CMakeLists.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/c/tests/CMakeLists.txt b/c/tests/CMakeLists.txt index 83f6e2213..2b9ec35c9 100644 --- a/c/tests/CMakeLists.txt +++ b/c/tests/CMakeLists.txt @@ -115,11 +115,10 @@ if (CMAKE_CXX_COMPILER) set(pypath "${CMAKE_SOURCE_DIR}/tests/py") - # Disable fdlimit test by default. Flaky throughout its history and implemntations. + # Disable fdlimit test by default. Flaky throughout its history and implementations. # Very useful for proactor development, so keep around. - set(DEFAULT_FDLIMIT OFF) - option(FDLIMIT "Run the fdlimit recovery test" ${DEFAULT_FDLIMIT}) - if (FDLIMIT) + option(ENABLE_FDLIMIT_TEST "Run the fdlimit recovery test" OFF) + if (ENABLE_FDLIMIT_TEST) # unset TEST_EXE_PREFIX as valgrind does not run successfully when fds are limited pn_add_test( UNWRAPPED --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org