blob: aefc97f09ed92f2c8fae12f8d17c8c55a148a695 (
plain)
1
2
3
4
5
6
7
8
9
|
import os
config.name = 'SanitizerBinaryMetadata'
config.test_source_root = os.path.dirname(__file__)
config.suffixes = ['.cpp']
# Binary metadata is currently emited only for ELF binaries
# and sizes of stack arguments depend on the arch.
if config.host_os not in ['Linux'] or config.target_arch not in ['x86_64']:
config.unsupported = True
|