blob: 57663ff7845dca1928663a7617f3090ecd9ed44d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Configuration file for the 'lit' test runner.
import os
import lit.formats
# suffixes: A list of file extensions to treat as test files.
config.suffixes = []
# testFormat: The test format to use to interpret tests.
config.test_format = lit.formats.GoogleTest('.', config.unit_test_exe_suffix)
|