[libcxx-commits] [libcxx] 3e0bc8c - Remove lit's --summary flag from buildbots.

Eric Fiselier via libcxx-commits libcxx-commits at lists.llvm.org
Thu Aug 31 11:23:58 PDT 2023


Author: Eric Fiselier
Date: 2023-08-31T14:23:51-04:00
New Revision: 3e0bc8cf78a615fed1e43845027be3526a586108

URL: https://github.com/llvm/llvm-project/commit/3e0bc8cf78a615fed1e43845027be3526a586108
DIFF: https://github.com/llvm/llvm-project/commit/3e0bc8cf78a615fed1e43845027be3526a586108.diff

LOG: Remove lit's --summary flag from buildbots.

The summary flag causes a progress bar to appear and be rewritten using
a curses like interface. This works great for interactive sessions, but
produces line after line of garbage in the logs.

This should cause the logs to be much smaller and more readable.

Reviewed By: #libc, ldionne

Differential Revision: https://reviews.llvm.org/D159120

Added: 
    

Modified: 
    libcxx/appveyor.yml
    libcxx/utils/ci/run-buildbot

Removed: 
    


################################################################################
diff  --git a/libcxx/appveyor.yml b/libcxx/appveyor.yml
index ea2c88e5fda7fa..8a69cb9e7dde0e 100644
--- a/libcxx/appveyor.yml
+++ b/libcxx/appveyor.yml
@@ -46,7 +46,7 @@ build_script:
   - cmake -G "%GENERATOR%" %CMAKE_OPTIONS%
     "-DCMAKE_BUILD_TYPE=%configuration%"
     "-DLLVM_PATH=C:\projects\deps\llvm"
-    -DLLVM_LIT_ARGS="-sv --show-xfail --show-unsupported"
+    -DLLVM_LIT_ARGS="-v --show-xfail --show-unsupported"
     %APPVEYOR_BUILD_FOLDER%
 
   #############################################################################

diff  --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 7c93b07dc3abf1..fb4c5e1bfcf65b 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -142,7 +142,7 @@ function generate-cmake-base() {
           -DLIBUNWIND_ENABLE_WERROR=YES \
           -DLIBCXX_ENABLE_CLANG_TIDY=${ENABLE_CLANG_TIDY} \
           ${ENABLE_STD_MODULES} \
-          -DLLVM_LIT_ARGS="-sv --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
+          -DLLVM_LIT_ARGS="-v --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
           "${@}"
 }
 


        


More information about the libcxx-commits mailing list