diff options
-rw-r--r-- | test/lit.site.cfg.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit.site.cfg.in b/test/lit.site.cfg.in index c80e663ed0..e71785e823 100644 --- a/test/lit.site.cfg.in +++ b/test/lit.site.cfg.in @@ -9,10 +9,10 @@ config.clang_obj_root = "@CLANG_BINARY_DIR@" config.target_triple = "@TARGET_TRIPLE@" config.targets_to_build = "@TARGETS_TO_BUILD@" -# Exclude not supported target-specific tests.
-config.excludes = []
-if not 'X86' in config.targets_to_build:
- config.excludes.append('X86')
+# Exclude not supported target-specific tests. +config.excludes = [] +if not 'X86' in config.targets_to_build: + config.excludes.append('X86') # Support substitution of the tools and libs dirs with user parameters. This is # used when we can't determine the tool dir at configuration time. |