blob: 6dad168926be82ae2ab72ae1047dd5fbcb619cd4 [file] [log] [blame]
Jim Stichnothdc7c5972015-03-10 11:17:15 -07001import os
2import re
3import lit.formats
4
5config.name = 'subzero_crosstests'
6config.test_format = lit.formats.ShTest()
7config.suffixes = ['.xtest']
8config.test_source_root = os.path.dirname(__file__)
9config.test_exec_root = config.test_source_root
10
Jim Stichnoth0a9e1262015-04-21 09:59:21 -070011pnaclbintools = [r"\bFileCheck\b"]
12pnaclbinpath = os.path.abspath(os.environ.get('PNACL_BIN_PATH'))
Jim Stichnothdc7c5972015-03-10 11:17:15 -070013
Jim Stichnoth0a9e1262015-04-21 09:59:21 -070014for tool in pnaclbintools:
Jim Stichnothdc7c5972015-03-10 11:17:15 -070015 # The re.sub() line is adapted from one of LLVM's lit.cfg files.
16 # Extract the tool name from the pattern. This relies on the tool
17 # name being surrounded by \b word match operators. If the
18 # pattern starts with "| ", include it in the string to be
19 # substituted.
20 substitution = re.sub(r"^(\\)?((\| )?)\W+b([0-9A-Za-z-_]+)\\b\W*$",
Jim Stichnoth0a9e1262015-04-21 09:59:21 -070021 r"\2" + pnaclbinpath + "/" + r"\4",
Jim Stichnothdc7c5972015-03-10 11:17:15 -070022 tool)
23 config.substitutions.append((tool, substitution))