File tree Expand file tree Collapse file tree 1 file changed +13
-15
lines changed Expand file tree Collapse file tree 1 file changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -2731,22 +2731,20 @@ for host in "${ALL_HOSTS[@]}"; do
2731
2731
fi
2732
2732
lldb_build_dir=$( build_directory ${host} lldb)
2733
2733
2734
- if [[ ! " ${LLDB_TEST_SWIFT_ONLY} " ]]; then
2735
- # Run the gtests.
2736
- if [[ " $( uname -s) " == " Darwin" && " $( true_false ${LLDB_BUILD_WITH_XCODE} ) " == " TRUE" ]] ; then
2737
- set_lldb_xcodebuild_options
2738
- # Run the LLDB unittests (gtests).
2739
- with_pushd ${LLDB_SOURCE_DIR} \
2740
- call xcodebuild -scheme lldb-gtest -configuration ${LLDB_BUILD_MODE} ${lldb_xcodebuild_options[@]}
2741
- rc=$?
2742
- if [[ " $rc " -ne 0 ]] ; then
2743
- >&2 echo " error: LLDB gtests failed"
2744
- exit 1
2745
- fi
2746
- else
2747
- with_pushd ${lldb_build_dir} \
2748
- ${NINJA_BIN} check-lldb-unit
2734
+ # Run the gtests.
2735
+ if [[ " $( uname -s) " == " Darwin" && " $( true_false ${LLDB_BUILD_WITH_XCODE} ) " == " TRUE" ]] ; then
2736
+ set_lldb_xcodebuild_options
2737
+ # Run the LLDB unittests (gtests).
2738
+ with_pushd ${LLDB_SOURCE_DIR} \
2739
+ call xcodebuild -scheme lldb-gtest -configuration ${LLDB_BUILD_MODE} ${lldb_xcodebuild_options[@]}
2740
+ rc=$?
2741
+ if [[ " $rc " -ne 0 ]] ; then
2742
+ >&2 echo " error: LLDB gtests failed"
2743
+ exit 1
2749
2744
fi
2745
+ else
2746
+ with_pushd ${lldb_build_dir} \
2747
+ ${NINJA_BIN} check-lldb-unit
2750
2748
fi
2751
2749
2752
2750
swift_build_dir=$( build_directory ${host} swift)
You can’t perform that action at this time.
0 commit comments