From 827171398116e1902acc57d5559636cec2e42858 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Fri, 25 Aug 2023 18:40:48 +0200 Subject: [PATCH] [libc++][CI] Improves bootstrap build output. Use the same arguments as other builds. This gives better output to validate what the CI did. Reviewed By: #libc, ldionne Differential Revision: https://reviews.llvm.org/D158860 --- libcxx/utils/ci/run-buildbot | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot index fb4c5e1bfcf6..e78dd36cde43 100755 --- a/libcxx/utils/ci/run-buildbot +++ b/libcxx/utils/ci/run-buildbot @@ -370,13 +370,14 @@ bootstrapping-build) -DLLVM_RUNTIME_TARGETS="$(${CXX} --print-target-triple)" \ -DLLVM_TARGETS_TO_BUILD="host" \ -DRUNTIMES_BUILD_ALLOW_DARWIN=ON \ - -DLLVM_ENABLE_ASSERTIONS=ON + -DLLVM_ENABLE_ASSERTIONS=ON \ + -DLLVM_LIT_ARGS="-v --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests" echo "+++ Running the libc++ and libc++abi tests" - ${NINJA} -C "${BUILD_DIR}" check-runtimes + ${NINJA} -vC "${BUILD_DIR}" check-runtimes echo "--- Installing libc++ and libc++abi to a fake location" - ${NINJA} -C "${BUILD_DIR}" install-runtimes + ${NINJA} -vC "${BUILD_DIR}" install-runtimes ccache -s ;;