aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Windows/lit.local.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Windows/lit.local.cfg')
-rw-r--r--test/asan/TestCases/Windows/lit.local.cfg14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/asan/TestCases/Windows/lit.local.cfg b/test/asan/TestCases/Windows/lit.local.cfg
new file mode 100644
index 000000000000..13ef6d428251
--- /dev/null
+++ b/test/asan/TestCases/Windows/lit.local.cfg
@@ -0,0 +1,14 @@
+def getRoot(config):
+ if not config.parent:
+ return config
+ return getRoot(config.parent)
+
+root = getRoot(config)
+
+# We only run a small set of tests on Windows for now.
+# Override the parent directory's "unsupported" decision until we can handle
+# all of its tests.
+if root.host_os in ['Windows']:
+ config.unsupported = False
+else:
+ config.unsupported = True