From 444754c1b01181636949084b58b1536cee72722d Mon Sep 17 00:00:00 2001 From: Piotr Padlewski Date: Tue, 12 Jul 2016 20:59:17 +0000 Subject: [PATCH] Review fixes to lit documentation Reviewers: mehdi_amini Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D22245 llvm-svn: 275214 --- docs/TestingGuide.rst | 34 ++-------------------------------- test/lit.cfg | 1 - 2 files changed, 2 insertions(+), 33 deletions(-) diff --git a/docs/TestingGuide.rst b/docs/TestingGuide.rst index ddb69901428..5dac58309e4 100644 --- a/docs/TestingGuide.rst +++ b/docs/TestingGuide.rst @@ -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 ------------- diff --git a/test/lit.cfg b/test/lit.cfg index 2adeaff1dc9..67e851b6e81 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -321,7 +321,6 @@ config.targets = frozenset(config.targets_to_build.split()) ### Features # Shell execution -# KEEP IN SYNC WITH FEATURES LIST IN TestingGuide.rst if execute_external: config.available_features.add('shell')