blob: 13fc92fa4b2bc1a9afc2cf541fabdbe8c6eca718 [file] [log] [blame]
Pirama Arumuga Nainarcdce50b2015-07-01 12:26:56 -07001# -*- Python -*-
2
3import os
4
5# Setup config name.
6config.name = 'SafeStack'
7
8# Setup source root.
9config.test_source_root = os.path.dirname(__file__)
10
11# Test suffixes.
12config.suffixes = ['.c', '.cc', '.cpp', '.m', '.mm', '.ll', '.test']
13
14# Add clang substitutions.
15config.substitutions.append( ("%clang_nosafestack ", config.clang + " -O0 -fno-sanitize=safe-stack ") )
16config.substitutions.append( ("%clang_safestack ", config.clang + " -O0 -fsanitize=safe-stack ") )
17
18if 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.
23if config.host_os not in ['Linux', 'FreeBSD', 'Darwin']:
24 config.unsupported = True