Skip to content

Commit 2d87233

Browse files
committed
CMake: rename the EXPAND_TESTS option to SVN_TEST_EXPAND, so we can follow
the naming structure. * CMakeLists.txt (EXPAND_TESTS): Rename to SVN_TEST_EXPAND. (...): Adjust the references. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1923449 13f79535-47bb-0310-9956-ffa450edef68
1 parent 64f849b commit 2d87233

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ option(SVN_ENABLE_SVNXX "Enable compilation of the C++ bindings (requires C++)"
7575
option(SVN_ENABLE_PROGRAMS "Build Subversion programs (such as svn.exe)" ON)
7676
cmake_dependent_option(SVN_ENABLE_TOOLS "Build Subversion tools" ON "SVN_ENABLE_TESTS" OFF)
7777
option(SVN_ENABLE_TESTS "Build Subversion test-suite" OFF)
78-
option(EXPAND_TESTS "Expand tests; This will slow-down configuration, but you will have an ability to run any subtest" OFF)
78+
option(SVN_TEST_EXPAND "Expand tests; This will slow-down configuration, but you will have an ability to run any subtest" OFF)
7979
option(SVN_TEST_CONFIGURE_FOR_PARALLEL "Configures tests for parallel run execution" OFF)
8080
option(SVN_ENABLE_APACHE_MODULES "Build modules for Apache HTTPD" OFF)
8181

@@ -809,7 +809,7 @@ if(SVN_ENABLE_TESTS)
809809
file(RELATIVE_PATH py_test_relpath ${CMAKE_CURRENT_SOURCE_DIR} ${py_test_abspath})
810810
set(binary_dir $<TARGET_FILE_DIR:svn>)
811811

812-
if(EXPAND_TESTS)
812+
if(SVN_TEST_EXPAND)
813813
message("Listing tests in ${py_test_name}")
814814
execute_process(
815815
COMMAND

0 commit comments

Comments
 (0)