From 65f350b538ac00a20b471629f95b0f555c098fdb Mon Sep 17 00:00:00 2001 From: Douglas Yung Date: Wed, 30 Jan 2019 09:49:39 +0000 Subject: [PATCH] Add lit config file to skip tests if WebAssembly target is not available. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@352614 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tools/llvm-nm/wasm/lit.local.cfg | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/tools/llvm-nm/wasm/lit.local.cfg diff --git a/test/tools/llvm-nm/wasm/lit.local.cfg b/test/tools/llvm-nm/wasm/lit.local.cfg new file mode 100644 index 00000000000..743473517cd --- /dev/null +++ b/test/tools/llvm-nm/wasm/lit.local.cfg @@ -0,0 +1,2 @@ +if not 'WebAssembly' in config.root.targets: + config.unsupported = True -- 2.40.0