[libcxx-commits] [PATCH] D159120: Remove lit's --summary flag from buildbots.

Eric Fiselier via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue Aug 29 10:03:44 PDT 2023


EricWF created this revision.
Herald added a subscriber: arichardson.
Herald added a project: All.
EricWF requested review of this revision.
Herald added a project: libc++.
Herald added a subscriber: libcxx-commits.
Herald added a reviewer: libc++.

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.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D159120

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


Index: libcxx/utils/ci/run-buildbot
===================================================================
--- libcxx/utils/ci/run-buildbot
+++ libcxx/utils/ci/run-buildbot
@@ -142,7 +142,7 @@
           -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" \
           "${@}"
 }
 
Index: libcxx/appveyor.yml
===================================================================
--- libcxx/appveyor.yml
+++ libcxx/appveyor.yml
@@ -46,7 +46,7 @@
   - 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%
 
   #############################################################################


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D159120.554410.patch
Type: text/x-patch
Size: 1104 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230829/5e8af485/attachment.bin>


More information about the libcxx-commits mailing list