From 3279867fcea35d98063e12cb8f033deea6596a25 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 27 Jun 2017 21:19:27 +0000 Subject: [PATCH] [WebAssembly] Only run WebAssembly objdump tests if it is enabled as a target Differential Revision: https://reviews.llvm.org/D34712 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@306464 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tools/llvm-objdump/WebAssembly/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/tools/llvm-objdump/WebAssembly/lit.local.cfg diff --git a/test/tools/llvm-objdump/WebAssembly/lit.local.cfg b/test/tools/llvm-objdump/WebAssembly/lit.local.cfg new file mode 100644 index 00000000000..0dd8c920ff1 --- /dev/null +++ b/test/tools/llvm-objdump/WebAssembly/lit.local.cfg @@ -0,0 +1,2 @@ +if 'WebAssembly' not in config.root.targets: + config.unsupported = True -- 2.40.0