From 383e7540727ee65d7007baee9d5368c72178e827 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Wed, 3 Aug 2022 15:54:14 -0500 Subject: [PATCH] NFC. Require DirectX backend for these tests Should have added this when I added the test directory. This just requires the DirectX target for running these tests. --- llvm/test/Transforms/EarlyCSE/DirectX/lit.local.cfg | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 llvm/test/Transforms/EarlyCSE/DirectX/lit.local.cfg diff --git a/llvm/test/Transforms/EarlyCSE/DirectX/lit.local.cfg b/llvm/test/Transforms/EarlyCSE/DirectX/lit.local.cfg new file mode 100644 index 0000000..b5b9899 --- /dev/null +++ b/llvm/test/Transforms/EarlyCSE/DirectX/lit.local.cfg @@ -0,0 +1,4 @@ +config.suffixes = ['.ll'] + +if not 'DirectX' in config.root.targets: + config.unsupported = True -- 2.7.4