summaryrefslogtreecommitdiff
path: root/test/esan/lit.cfg
blob: cc7492c887b9b7217bf16e22668f087994857af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- Python -*-

import os

# Setup config name.
config.name = 'EfficiencySanitizer' + config.name_suffix

# Setup source root.
config.test_source_root = os.path.dirname(__file__)

# Setup default compiler flags used with -fsanitize=efficiency option.
base_cflags = ([config.target_cflags] + config.debug_info_flags)
base_cxxflags = config.cxx_mode_flags + base_cflags

frag_cflags = (["-fsanitize=efficiency-cache-frag"] + base_cflags)
wset_cflags = (["-fsanitize=efficiency-working-set"] + base_cflags)

def build_invocation(compile_flags):
  return " " + " ".join([config.clang] + compile_flags) + " "

config.substitutions.append( ("%clang_esan_frag ",
                              build_invocation(frag_cflags)) )
config.substitutions.append( ("%clang_esan_wset ",
                              build_invocation(wset_cflags)) )

default_esan_opts = ''
config.substitutions.append(('%env_esan_opts=',
                             'env ESAN_OPTIONS=' + default_esan_opts))

# Default test suffixes.
config.suffixes = ['.c', '.cpp']

# EfficiencySanitizer tests are currently supported on Linux x86-64 only.
if config.host_os not in ['Linux'] or config.target_arch != 'x86_64':
  config.unsupported = True