[llvm] r275214 - Review fixes to lit documentation

Piotr Padlewski via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 12 13:59:17 PDT 2016


Author: prazek
Date: Tue Jul 12 15:59:17 2016
New Revision: 275214

URL: http://llvm.org/viewvc/llvm-project?rev=275214&view=rev
Log:
Review fixes to lit documentation

Reviewers: mehdi_amini

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D22245

Modified:
    llvm/trunk/docs/TestingGuide.rst
    llvm/trunk/test/lit.cfg

Modified: llvm/trunk/docs/TestingGuide.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/TestingGuide.rst?rev=275214&r1=275213&r2=275214&view=diff
==============================================================================
--- llvm/trunk/docs/TestingGuide.rst (original)
+++ llvm/trunk/docs/TestingGuide.rst Tue Jul 12 15:59:17 2016
@@ -402,38 +402,8 @@ You can separate requirements by a comma
 ``REQUIRES`` means all listed requirements must be satisfied.
 ``REQUIRES-ANY`` means at least one must be satisfied.
 
-List of features that can be used in ``REQUIRES`` and ``REQUIRES-ANY``:
-- asan
-- not_asan
-- asserts
-- can-execute
-- debug_frame
-- default_triple
-- dfsan
-- fma3
-- global-isel
-- ld64_plugin
-- ld_emu_elf32ppc
-- ld_plugin
-- linux
-- loadable_module
-- long_tests
-- lsan
-- msan
-- not_msan
-- native
-- object-emission
-- python-psutil
-- shell
-- system-windows
-- ubsan
-- not_ubsan
-- x86_64-linux
-- xar
-- zlib
-- nozlib
-
-To add new features change lit.cfg in test directory.
+List of features that can be used in ``REQUIRES`` and ``REQUIRES-ANY`` can be
+found in lit.cfg files.
 
 Substitutions
 -------------

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=275214&r1=275213&r2=275214&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Tue Jul 12 15:59:17 2016
@@ -321,7 +321,6 @@ config.targets = frozenset(config.target
 ### Features
 
 # Shell execution
-# KEEP IN SYNC WITH FEATURES LIST IN TestingGuide.rst
 if execute_external:
     config.available_features.add('shell')
 




More information about the llvm-commits mailing list