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
2187
2187
DOTEST_ARGS=" ${DOTEST_ARGS} ;-E;${DOTEST_EXTRA} "
2188
2188
fi
2189
2189
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
+
2190
2196
cmake_options=(
2191
2197
" ${cmake_options[@]} "
2192
2198
-C${LLDB_SOURCE_DIR} /cmake/caches/${cmake_cache}
@@ -2205,7 +2211,7 @@ for host in "${ALL_HOSTS[@]}"; do
2205
2211
-DLLDB_ENABLE_PYTHON=ON
2206
2212
-DLLDB_ENABLE_LZMA=OFF
2207
2213
-DLLDB_ENABLE_LUA=OFF
2208
- -DLLDB_INCLUDE_TESTS:BOOL=$( false_true ${BUILD_TOOLCHAIN_ONLY} )
2214
+ -DLLDB_INCLUDE_TESTS:BOOL=" ${should_configure_tests} "
2209
2215
-DLLDB_TEST_LIBCXX_ROOT_DIR:STRING=" ${libcxx_build_dir} "
2210
2216
-DLLDB_TEST_USER_ARGS=" ${DOTEST_ARGS} "
2211
2217
)
You can’t perform that action at this time.
0 commit comments