File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1398,6 +1398,10 @@ mixin-preset=
1398
1398
skip-test-lldb
1399
1399
skip-test-playgroundsupport
1400
1400
1401
+ # Don't configure LLDB tests either since that
1402
+ # would require us to build libcxx (rdar://109774179)
1403
+ lldb-configure-tests =0
1404
+
1401
1405
[preset: buildbot_osx_package,use_os_runtime]
1402
1406
mixin-preset =
1403
1407
buildbot_osx_package
Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ KNOWN_SETTINGS=(
174
174
lldb-test-swift-compatibility " " " specify additional Swift compilers to test lldb with"
175
175
lldb-test-swift-only " 0" " when running lldb tests, only include Swift-specific tests"
176
176
lldb-use-system-debugserver " " " don't try to codesign debugserver, and use the system's debugserver instead"
177
+ lldb-configure-tests " 1" " if set, will make sure we configure LLDB's test target without running the tests"
177
178
178
179
# # LLVM Options
179
180
llvm-enable-lto " " " Must be set to one of 'thin' or 'full'"
@@ -2187,7 +2188,7 @@ for host in "${ALL_HOSTS[@]}"; do
2187
2188
DOTEST_ARGS=" ${DOTEST_ARGS} ;-E;${DOTEST_EXTRA} "
2188
2189
fi
2189
2190
2190
- if [[ " ${SKIP_TEST_LLDB} " ]]; then
2191
+ if [[ $( true_false " ${LLDB_CONFIGURE_TESTS} " ) == " FALSE " ]]; then
2191
2192
should_configure_tests=" FALSE"
2192
2193
else
2193
2194
should_configure_tests=$( false_true ${BUILD_TOOLCHAIN_ONLY} )
You can’t perform that action at this time.
0 commit comments