summaryrefslogtreecommitdiff
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2014-02-20 17:53:17 +0000
committerAdrian Prantl <aprantl@apple.com>2014-02-20 17:53:17 +0000
commit9c0461e2db79b3bbbc64cbb58c0aab5d3e4569fb (patch)
tree1084d3052c4768750232ca6eef48087bc6e3d1a4 /test/lit.cfg
parentdac75e7a51ea0a8cd8e5dd8a5eb32661f3d30b8c (diff)
downloadclang-9c0461e2db79b3bbbc64cbb58c0aab5d3e4569fb.tar.gz
Revert "Remove dead option."
Some tests in debuginfo-tests require the system-darwin feature. This reverts commit 179670. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201800 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index b75b4bcf3c..f820214411 100644
--- a/test/lit.cfg
+++ b/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')