aboutsummaryrefslogtreecommitdiff
path: root/flang-rt/test/NonGtestUnit/lit.cfg.py
blob: 8da36adc74a227c27cca040637ea69c729536c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- Python -*-

import os

import lit.formats

# name: The name of this test suite.
config.name = "flang-rt-OldUnit"

# suffixes: A list of file extensions to treat as test files.
config.suffixes = [".test", ".test.exe"]

# test_source_root: The root path where unit test binaries are located.
config.test_source_root = os.path.join(config.flangrt_binary_dir, "unittests")

# test_exec_root: The root path where tests should be run.
# lit writes a '.lit_test_times.txt' file into this directory.
config.test_exec_root = config.flang_rt_binary_test_dir

# testFormat: The test format to use to interpret tests.
config.test_format = lit.formats.ExecutableTest()