File tree Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Expand file tree Collapse file tree 4 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -528,7 +528,7 @@ assertions
528
528
test
529
529
validation-test
530
530
531
- llvm-targets-to-build =X86; AArch64;PowerPC
531
+ llvm-targets-to-build =X86; ARM; AArch64;PowerPC
532
532
533
533
# Set the vendor to apple
534
534
compiler-vendor =apple
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ KNOWN_SETTINGS=(
74
74
swift-stdlib-enable-assertions " 1" " enable assertions in Swift"
75
75
swift-stdlib-use-nonatomic-rc " 0" " build the Swift stdlib and overlays with nonatomic reference count operations enabled"
76
76
lldb-build-type " Debug" " the CMake build variant for LLDB"
77
- lldb-build-with-xcode " 1 " " Use xcodebuild to build LLDB, instead of CMake"
77
+ lldb-build-with-xcode " 0 " " Use xcodebuild to build LLDB, instead of CMake"
78
78
llbuild-build-type " Debug" " the CMake build variant for llbuild"
79
79
foundation-build-type " Debug" " the build variant for Foundation"
80
80
libdispatch-build-type " Debug" " the build variant for libdispatch"
@@ -3111,6 +3111,12 @@ for host in "${ALL_HOSTS[@]}"; do
3111
3111
LLVM_LIT_ARGS=" ${LLVM_LIT_ARGS} --threads=$( sysctl hw.physicalcpu | awk ' { print $2 }' ) "
3112
3112
fi
3113
3113
3114
+ if [[ " $( true_false ${LLDB_TEST_SWIFT_ONLY} ) " == " TRUE" ]]; then
3115
+ LLVM_LIT_ARGS=" ${LLVM_LIT_ARGS} --filter=[sS]wift"
3116
+ fi
3117
+
3118
+ # Record the times test took and report the slowest.
3119
+ LLVM_LIT_ARGS=" ${LLVM_LIT_ARGS} -v --time-tests"
3114
3120
if [[ " $using_xcodebuild " == " FALSE" ]] ; then
3115
3121
with_pushd ${lldb_build_dir} \
3116
3122
call ${NINJA_BIN} unittests/LLDBUnitTests
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def _apply_default_arguments(args):
77
77
args .lldb_build_variant = args .build_variant
78
78
79
79
if args .lldb_build_with_xcode is None :
80
- args .lldb_build_with_xcode = '1 '
80
+ args .lldb_build_with_xcode = '0 '
81
81
82
82
if args .foundation_build_variant is None :
83
83
args .foundation_build_variant = args .build_variant
Original file line number Diff line number Diff line change 151
151
'llbuild_assertions' : True ,
152
152
'lldb_assertions' : True ,
153
153
'lldb_build_variant' : 'Debug' ,
154
- 'lldb_build_with_xcode' : '1 ' ,
154
+ 'lldb_build_with_xcode' : '0 ' ,
155
155
'llvm_assertions' : True ,
156
156
'llvm_build_variant' : 'Debug' ,
157
157
'llvm_max_parallel_lto_link_jobs' :
You can’t perform that action at this time.
0 commit comments