summaryrefslogtreecommitdiff
path: root/llvm/utils/lit/tests/unparsed-requirements.py
blob: 48cd37f8e65df707b006d254a10ee625f10ba4d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# RUN: %{python} %s %{inputs}/unparsed-requirements

import sys
from lit.Test import Result, Test, TestSuite
from lit.TestRunner import parseIntegratedTestScript
from lit.TestingConfig import TestingConfig

config = TestingConfig(
    None,
    "config",
    [".txt"],
    None,
    [],
    [],
    False,
    sys.argv[1],
    sys.argv[1],
    [],
    [],
    True,
)
suite = TestSuite("suite", sys.argv[1], sys.argv[1], config)

test = Test(suite, ["test.py"], config)
test.requires = ["meow"]
test.unsupported = ["alpha"]
test.xfails = ["foo"]

parseIntegratedTestScript(test)

error_count = 0
if test.requires != ["meow", "woof", "quack"]:
    error_count += 1
if test.unsupported != ["alpha", "beta", "gamma"]:
    error_count += 1
if test.xfails != ["foo", "bar", "baz"]:
    error_count += 1
exit(error_count)