Skip to content

Commit 3e0bc8c

Browse files
committed
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
1 parent fa832d5 commit 3e0bc8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ build_script:
4646
- cmake -G "%GENERATOR%" %CMAKE_OPTIONS%
4747
"-DCMAKE_BUILD_TYPE=%configuration%"
4848
"-DLLVM_PATH=C:\projects\deps\llvm"
49-
-DLLVM_LIT_ARGS="-sv --show-xfail --show-unsupported"
49+
-DLLVM_LIT_ARGS="-v --show-xfail --show-unsupported"
5050
%APPVEYOR_BUILD_FOLDER%
5151

5252
#############################################################################

libcxx/utils/ci/run-buildbot

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function generate-cmake-base() {
142142
-DLIBUNWIND_ENABLE_WERROR=YES \
143143
-DLIBCXX_ENABLE_CLANG_TIDY=${ENABLE_CLANG_TIDY} \
144144
${ENABLE_STD_MODULES} \
145-
-DLLVM_LIT_ARGS="-sv --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
145+
-DLLVM_LIT_ARGS="-v --show-unsupported --xunit-xml-output test-results.xml --timeout=1500 --time-tests" \
146146
"${@}"
147147
}
148148

0 commit comments

Comments
 (0)