File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
zorg/buildbot/builders/annotated Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ def main(argv):
93
93
cmake_args .append ('-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON' )
94
94
cmake_args .append ('-DCOMPILER_RT_BUILD_GWP_ASAN=OFF' )
95
95
cmake_args .append ('-DCOMPILER_RT_SCUDO_STANDALONE_BUILD_SHARED=OFF' )
96
- cmake_args .append ('-DLIBC_INCLUDE_BENCHMARKS=ON' )
96
+ # TODO(https://github.com/llvm/llvm-project/issues/119789): re-enable
97
+ # cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')
97
98
98
99
if fullbuild :
99
100
cmake_args .extend (['-DLLVM_LIBC_FULL_BUILD=ON' ]),
@@ -144,8 +145,10 @@ def main(argv):
144
145
run_command (['ninja' , 'libc-integration-tests' ])
145
146
with step ('libc-scudo-integration-test' ):
146
147
run_command (['ninja' , 'libc-scudo-integration-test' ])
147
- with step ('Benchmark Utils Tests' ):
148
- run_command (['ninja' , 'libc-benchmark-util-tests' ])
148
+ # TODO(https://github.com/llvm/llvm-project/issues/119789): re-enable
149
+ # cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')
150
+ # with step('Benchmark Utils Tests'):
151
+ # run_command(['ninja', 'libc-benchmark-util-tests'])
149
152
150
153
if not (fullbuild or bootstrap_build ) and x86_64_build :
151
154
with step ('libc-fuzzer' ):
You can’t perform that action at this time.
0 commit comments