nir: pack nir_variable::data::stream
[mesa.git] / src / gallium / drivers / radeonsi / glsl_tests / lit.cfg
1 # -*- Python -*-
2
3 # Configuration file for the 'lit' test runner.
4
5 import os
6 import sys
7 import re
8 import platform
9
10 import lit.util
11 import lit.formats
12
13 # name: The name of this test suite.
14 config.name = 'AMDGCN_GLSL'
15
16 execute_external = True
17
18 # testFormat: The test format to use to interpret tests.
19 config.test_format = lit.formats.ShTest(execute_external)
20
21 import __main__
22 llvm_obj_root = __main__.llvm_obj_root
23 llvm_tools_dir = os.path.join(llvm_obj_root, 'bin')
24
25 # Tweak the PATH to include the tools dir.
26 path = os.path.pathsep.join((llvm_tools_dir, config.environment['PATH']))
27 config.environment['PATH'] = path