diff options
Diffstat (limited to 'test/asan/lit.cfg')
| -rw-r--r-- | test/asan/lit.cfg | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/asan/lit.cfg b/test/asan/lit.cfg index 7d684a1ae7a7..b433a91e830e 100644 --- a/test/asan/lit.cfg +++ b/test/asan/lit.cfg @@ -108,14 +108,12 @@ if platform.system() == 'Windows': asan_lit_source_dir = get_required_attr(config, "asan_lit_source_dir") if config.android == "1": config.available_features.add('android') - clang_wrapper = os.path.join(asan_lit_source_dir, - "android_commands", "android_compile.py") + " " + compile_wrapper = os.path.join(asan_lit_source_dir, "android_commands", "android_compile.py") + " " else: config.available_features.add('not-android') - clang_wrapper = "" def build_invocation(compile_flags): - return " " + " ".join([clang_wrapper, config.clang] + compile_flags) + " " + return " " + " ".join([config.compile_wrapper, config.clang] + compile_flags) + " " # Clang driver link 'x86' (i686) architecture to 'i386'. target_arch = config.target_arch |
