diff options
Diffstat (limited to 'clang')
-rw-r--r-- | clang/test/lit.cfg | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index b75b4bcf3c9..f8202144113 100644 --- a/clang/test/lit.cfg +++ b/clang/test/lit.cfg @@ -304,6 +304,10 @@ if execute_external: if not platform.system() in ['Windows'] or not execute_external: config.available_features.add('shell-preserves-root') +# For tests that require Darwin to run. +if platform.system() in ['Darwin']: + config.available_features.add('system-darwin') + # ANSI escape sequences in non-dumb terminal if platform.system() not in ['Windows']: config.available_features.add('ansi-escape-sequences') |