[PATCH] D72389: [lit] Run lit -s -vv by default instead of lit -sv
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 8 02:02:27 PST 2020
foad created this revision.
Herald added a subscriber: mgorny.
Herald added a project: LLVM.
This makes lit show you which command failed for a failing test, which
is really useful information for a test with many independent RUN lines.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D72389
Files:
llvm/CMakeLists.txt
Index: llvm/CMakeLists.txt
===================================================================
--- llvm/CMakeLists.txt
+++ llvm/CMakeLists.txt
@@ -480,7 +480,7 @@
# Define the default arguments to use with 'lit', and an option for the user to
# override.
-set(LIT_ARGS_DEFAULT "-sv")
+set(LIT_ARGS_DEFAULT "-s -vv")
if (MSVC_IDE OR XCODE)
set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72389.236779.patch
Type: text/x-patch
Size: 418 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200108/a6f0f310/attachment.bin>
More information about the llvm-commits
mailing list