1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-15 04:10:40 +03:00
mold/test/lit.cfg.py

20 lines
428 B
Python
Raw Normal View History

2020-09-29 09:05:29 +03:00
# -*- Python -*-
import os
import platform
import re
import subprocess
import locale
from lit.llvm import llvm_config
import lit.llvm
import lit.util
2020-10-20 08:54:35 +03:00
config.name = 'mold'
2020-09-29 09:05:29 +03:00
config.suffixes = ['.s', '.test']
config.test_format = lit.formats.ShTest(False)
config.test_source_root = os.path.dirname(__file__)
config.environment['PATH'] = os.path.pathsep.join((
os.path.dirname(__file__) + '/..', config.environment['PATH']))