]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/safestack/lit.cfg
Import compiler-rt 3.7.0 release (r246257).
[FreeBSD/FreeBSD.git] / test / safestack / lit.cfg
1 # -*- Python -*-
2
3 import os
4
5 # Setup config name.
6 config.name = 'SafeStack'
7
8 # Setup source root.
9 config.test_source_root = os.path.dirname(__file__)
10
11 # Test suffixes.
12 config.suffixes = ['.c', '.cc', '.cpp', '.m', '.mm', '.ll', '.test']
13
14 # Add clang substitutions.
15 config.substitutions.append( ("%clang_nosafestack ", config.clang + " -O0 -fno-sanitize=safe-stack ") )
16 config.substitutions.append( ("%clang_safestack ", config.clang + " -O0 -fsanitize=safe-stack ") )
17
18 if config.lto_supported:
19   config.available_features.add('lto')
20   config.substitutions.append((r"%clang_lto_safestack ", ' '.join(config.lto_launch + [config.clang] + config.lto_flags + ['-flto -fsanitize=safe-stack '])))
21
22 # SafeStack tests are currently supported on Linux, FreeBSD and Darwin only.
23 if config.host_os not in ['Linux', 'FreeBSD', 'Darwin']:
24    config.unsupported = True