[compiler-rt] r312203 - [ubsan] Give ubsan-minimal lit test suite a name.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 30 17:54:11 PDT 2017


Author: eugenis
Date: Wed Aug 30 17:54:10 2017
New Revision: 312203

URL: http://llvm.org/viewvc/llvm-project?rev=312203&view=rev
Log:
[ubsan] Give ubsan-minimal lit test suite a name.

Otherwise llvm-lit -v prints this:
PASS: <unnamed> :: TestCases/recover-dedup-limit.cpp (1 of 3)
PASS: <unnamed> :: TestCases/recover-dedup.cpp (2 of 3)
PASS: <unnamed> :: TestCases/uadd-overflow.cpp (3 of 3)

Modified:
    compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg

Modified: compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg?rev=312203&r1=312202&r2=312203&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg (original)
+++ compiler-rt/trunk/test/ubsan_minimal/lit.common.cfg Wed Aug 30 17:54:10 2017
@@ -13,6 +13,7 @@ def get_required_attr(config, attr_name)
 
 # Setup source root.
 config.test_source_root = os.path.dirname(__file__)
+config.name = 'UBSan-Minimal-' + config.target_arch
 
 def build_invocation(compile_flags):
   return " " + " ".join([config.clang] + compile_flags) + " "




More information about the llvm-commits mailing list