From 6488bd1d51715501632778e3c9a1d4eedfac2998 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sun, 28 Nov 2021 18:21:57 -0800 Subject: [PATCH] test: add a lit configuration for Windows subdirectory This adds a local configuration to the Windows subdirectory to filter out the tests on non-Windows platforms using the lit filtering. --- lldb/test/Shell/Process/Windows/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 lldb/test/Shell/Process/Windows/lit.local.cfg diff --git a/lldb/test/Shell/Process/Windows/lit.local.cfg b/lldb/test/Shell/Process/Windows/lit.local.cfg new file mode 100644 index 0000000000000..c10f33b2ad4b6 --- /dev/null +++ b/lldb/test/Shell/Process/Windows/lit.local.cfg @@ -0,0 +1,2 @@ +if 'system-windows' not in config.available_features: + config.unsupported = True