[libcxx-commits] [libcxx] 8271713 - [libc++][CI] Improves bootstrap build output.

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Wed Sep 6 10:49:04 PDT 2023


Author: Mark de Wever
Date: 2023-09-06T19:48:59+02:00
New Revision: 827171398116e1902acc57d5559636cec2e42858

URL: https://github.com/llvm/llvm-project/commit/827171398116e1902acc57d5559636cec2e42858
DIFF: https://github.com/llvm/llvm-project/commit/827171398116e1902acc57d5559636cec2e42858.diff

LOG: [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

Added: 
    

Modified: 
    libcxx/utils/ci/run-buildbot

Removed: 
    


################################################################################
diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index fb4c5e1bfcf65b..e78dd36cde43fe 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
 ;;


        


More information about the libcxx-commits mailing list