File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -2527,10 +2527,6 @@ for host in "${ALL_HOSTS[@]}"; do
2527
2527
-DLLDB_BUILD_FRAMEWORK:BOOL=TRUE
2528
2528
-DLLDB_CODESIGN_IDENTITY=" "
2529
2529
)
2530
- if [[ " ${ENABLE_ASAN} " ]] ; then
2531
- # Limit the number of parallel tests
2532
- LLVM_LIT_ARGS=" ${LLVM_LIT_ARGS} --threads=$( sysctl hw.physicalcpu | awk ' { print $2 }' ) "
2533
- fi
2534
2530
fi
2535
2531
fi
2536
2532
;;
@@ -3134,9 +3130,15 @@ for host in "${ALL_HOSTS[@]}"; do
3134
3130
# Prefer to use lldb-dotest, as building it guarantees that we build all
3135
3131
# test dependencies. Ultimately we want to delete as much lldb-specific logic
3136
3132
# from this file as possible and just have a single call to lldb-dotest.
3133
+
3134
+ if [[ " ${ENABLE_ASAN} " ]] ; then
3135
+ # Limit the number of parallel tests
3136
+ LLVM_LIT_ARGS=" ${LLVM_LIT_ARGS} --threads=$( sysctl hw.physicalcpu | awk ' { print $2 }' ) "
3137
+ fi
3138
+
3137
3139
if [[ " $using_xcodebuild " == " FALSE" ]] ; then
3138
3140
with_pushd ${lldb_build_dir} \
3139
- call ${NINJA_BIN} unittests/LLDBUnitTests
3141
+ call ${NINJA_BIN} unittests/LLDBUnitTests
3140
3142
with_pushd ${results_dir} \
3141
3143
call " ${llvm_build_dir} /bin/llvm-lit" \
3142
3144
" ${lldb_build_dir} /lit" \
You can’t perform that action at this time.
0 commit comments