File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -2187,6 +2187,12 @@ for host in "${ALL_HOSTS[@]}"; do
21872187 DOTEST_ARGS=" ${DOTEST_ARGS} ;-E;${DOTEST_EXTRA} "
21882188 fi
21892189
2190+ if [[ " ${SKIP_TEST_LLDB} " ]]; then
2191+ should_configure_tests=" FALSE"
2192+ else
2193+ should_configure_tests=$( false_true ${BUILD_TOOLCHAIN_ONLY} )
2194+ fi
2195+
21902196 cmake_options=(
21912197 " ${cmake_options[@]} "
21922198 -C${LLDB_SOURCE_DIR} /cmake/caches/${cmake_cache}
@@ -2205,7 +2211,7 @@ for host in "${ALL_HOSTS[@]}"; do
22052211 -DLLDB_ENABLE_PYTHON=ON
22062212 -DLLDB_ENABLE_LZMA=OFF
22072213 -DLLDB_ENABLE_LUA=OFF
2208- -DLLDB_INCLUDE_TESTS:BOOL=$( false_true ${BUILD_TOOLCHAIN_ONLY} )
2214+ -DLLDB_INCLUDE_TESTS:BOOL=" ${should_configure_tests} "
22092215 -DLLDB_TEST_LIBCXX_ROOT_DIR:STRING=" ${libcxx_build_dir} "
22102216 -DLLDB_TEST_USER_ARGS=" ${DOTEST_ARGS} "
22112217 )
You can’t perform that action at this time.
0 commit comments