Skip to content

Commit e1146f8

Browse files
libc: disable benchmarks to get fullbuilds back online (#343)
Link: llvm/llvm-project#119789
1 parent f2bf53d commit e1146f8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

zorg/buildbot/builders/annotated/libc-linux.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ def main(argv):
9393
cmake_args.append('-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON')
9494
cmake_args.append('-DCOMPILER_RT_BUILD_GWP_ASAN=OFF')
9595
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')
9798

9899
if fullbuild:
99100
cmake_args.extend(['-DLLVM_LIBC_FULL_BUILD=ON']),
@@ -144,8 +145,10 @@ def main(argv):
144145
run_command(['ninja', 'libc-integration-tests'])
145146
with step('libc-scudo-integration-test'):
146147
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'])
149152

150153
if not (fullbuild or bootstrap_build) and x86_64_build:
151154
with step('libc-fuzzer'):

0 commit comments

Comments
 (0)