diff options
Diffstat (limited to 'llvm/lib/Fuzzer/test/lit.cfg')
-rw-r--r-- | llvm/lib/Fuzzer/test/lit.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/lit.cfg b/llvm/lib/Fuzzer/test/lit.cfg index 55391b8f483..85c95b42d1e 100644 --- a/llvm/lib/Fuzzer/test/lit.cfg +++ b/llvm/lib/Fuzzer/test/lit.cfg @@ -40,6 +40,9 @@ else: if sys.platform.startswith('win') or sys.platform.startswith('cygwin'): config.available_features.add('windows') +if sys.platform.startswith('darwin'): + config.available_features.add('darwin') + if config.is_posix: config.available_features.add('posix') |