mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-18 11:56:41 +00:00

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
19 lines
549 B
Python
19 lines
549 B
Python
from lit import Test, TestFormat
|
|
|
|
|
|
class ManyTests(TestFormat):
|
|
def __init__(self, N=10000):
|
|
self.N = N
|
|
|
|
def getTestsInDirectory(self, testSuite, path_in_suite, litConfig, localConfig):
|
|
for i in range(self.N):
|
|
test_name = "test-%04d" % (i,)
|
|
yield Test.Test(testSuite, path_in_suite + (test_name,), localConfig)
|
|
|
|
def execute(self, test, litConfig):
|
|
# Do a "non-trivial" amount of Python work.
|
|
sum = 0
|
|
for i in range(10000):
|
|
sum += i
|
|
return Test.PASS, ""
|