diff options
author | Douglas Yung <douglas.yung@sony.com> | 2019-01-30 09:49:39 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2019-01-30 09:49:39 +0000 |
commit | a8ac9abe6c1e07c5d0207c6da687bd574a4ddf0d (patch) | |
tree | 6eaac115b4a10ba4f72a21d138555b0cc2137027 | |
parent | 174aa30c8252d57ab6ea299c9ef55ba0cd876661 (diff) | |
download | bcm5719-llvm-a8ac9abe6c1e07c5d0207c6da687bd574a4ddf0d.tar.gz bcm5719-llvm-a8ac9abe6c1e07c5d0207c6da687bd574a4ddf0d.zip |
Add lit config file to skip tests if WebAssembly target is not available.
llvm-svn: 352614
-rw-r--r-- | llvm/test/tools/llvm-nm/wasm/lit.local.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-nm/wasm/lit.local.cfg b/llvm/test/tools/llvm-nm/wasm/lit.local.cfg new file mode 100644 index 00000000000..743473517cd --- /dev/null +++ b/llvm/test/tools/llvm-nm/wasm/lit.local.cfg @@ -0,0 +1,2 @@ +if not 'WebAssembly' in config.root.targets: + config.unsupported = True |