Files
clang-p2996/llvm/utils/lit/tests/Inputs/discovery-getTestsForPath/lit.cfg
Louis Dionne 5b55eb1e88 [lit] Add a method to lit.TestFormat to get the list of tests associated to a path
Lit TestFormat classes already needed to implement the getTestsInDirectory
method. However, some test formats may want to expand a single test path
to multiple Lit tests, for example in the case of a test that actually
generates other Lit tests.

To accommodate that, this commit adds the getTestsForPath method to
TestFormat. This method can be used to turn a single path in a Lit
test suite into a list of tests associated to that path.

Differential Revision: https://reviews.llvm.org/D151664
2023-06-27 16:27:08 -04:00

10 lines
270 B
INI

import sys, os
sys.path.append(os.path.dirname(__file__))
from custom_format import CustomFormat
config.name = "discovery-getTestsForPath-suite"
config.suffixes = [".test"]
config.test_format = CustomFormat()
config.test_source_root = None
config.test_exec_root = None