[PATCH] D148442: [compiler-rt] [test] Don't override config.unsupported in TestCases/Windows
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 19 09:23:59 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG073e7f25f359: [compiler-rt] [test] Don't override config.unsupported in TestCases/Windows (authored by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D148442/new/
https://reviews.llvm.org/D148442
Files:
compiler-rt/test/asan/TestCases/Windows/lit.local.cfg.py
Index: compiler-rt/test/asan/TestCases/Windows/lit.local.cfg.py
===================================================================
--- compiler-rt/test/asan/TestCases/Windows/lit.local.cfg.py
+++ compiler-rt/test/asan/TestCases/Windows/lit.local.cfg.py
@@ -5,10 +5,5 @@
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:
+if root.host_os not in ['Windows']:
config.unsupported = True
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D148442.514989.patch
Type: text/x-patch
Size: 590 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230419/b92bbe54/attachment.bin>
More information about the llvm-commits
mailing list