You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
321 B
11 lines
321 B
4 months ago
|
import os
|
||
|
|
||
|
if not 'X86' in config.root.targets:
|
||
|
config.unsupported = True
|
||
|
|
||
|
if config.llvm_use_sanitizer:
|
||
|
suppr = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'suppressions.txt')
|
||
|
config.environment['LSAN_OPTIONS'] = 'suppressions={}'.format(suppr)
|
||
|
|
||
|
config.suffixes = ['.test', '.cpp', '.m', '.s']
|