[libcxx] r216315 - [libcxx] Add --show-unsupported and --show-xfail to check-libcxx's default LIT args.
Eric Fiselier
eric at efcs.ca
Fri Aug 22 21:33:20 PDT 2014
Author: ericwf
Date: Fri Aug 22 23:33:20 2014
New Revision: 216315
URL: http://llvm.org/viewvc/llvm-project?rev=216315&view=rev
Log:
[libcxx] Add --show-unsupported and --show-xfail to check-libcxx's default LIT args.
Summary:
In order to gather more information about testsuite results these flags should be added to LIT's default args.
These new switches were recently added to LIT. It been more than two weeks since both switches were added.
I think its time we add these to our LIT flags.
Reviewers: mclow.lists, danalbert
Reviewed By: danalbert
Subscribers: cfe-commits
Differential Revision: http://reviews.llvm.org/D5037
Modified:
libcxx/trunk/test/CMakeLists.txt
Modified: libcxx/trunk/test/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/CMakeLists.txt?rev=216315&r1=216314&r2=216315&view=diff
==============================================================================
--- libcxx/trunk/test/CMakeLists.txt (original)
+++ libcxx/trunk/test/CMakeLists.txt Fri Aug 22 23:33:20 2014
@@ -14,7 +14,7 @@ if(PYTHONINTERP_FOUND)
set(LIT_EXECUTABLE "${CMAKE_SOURCE_DIR}/utils/lit/lit.py")
endif()
- set(LIT_ARGS_DEFAULT "-sv")
+ set(LIT_ARGS_DEFAULT "-sv --show-unsupported --show-xfail")
if (MSVC OR XCODE)
set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
endif()
More information about the cfe-commits
mailing list