diff options
| author | Alp Toker <alp@nuanti.com> | 2013-10-28 23:37:49 +0000 |
|---|---|---|
| committer | Alp Toker <alp@nuanti.com> | 2013-10-28 23:37:49 +0000 |
| commit | 5e9ed7cf1db8e614be4968a981e1ba0e43d21d16 (patch) | |
| tree | 1eba4886dad07f120c538ebb419893dd551cd19f /llvm | |
| parent | 0d44e49e924c7b1255e3817ae4f0678aa283b722 (diff) | |
| download | bcm5719-llvm-5e9ed7cf1db8e614be4968a981e1ba0e43d21d16.tar.gz bcm5719-llvm-5e9ed7cf1db8e614be4968a981e1ba0e43d21d16.zip | |
lit: add missing substitutions for recently added tools
llvm-mcmarkup, obj2yaml and yaml2obj were missing from the substitutions list,
causing the test suite to fail in a sandboxed environment.
llvm-svn: 193559
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | llvm/test/lit.cfg | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/CMakeLists.txt b/llvm/test/CMakeLists.txt index edefcb79f87..d6f7dab1287 100644 --- a/llvm/test/CMakeLists.txt +++ b/llvm/test/CMakeLists.txt @@ -13,6 +13,7 @@ if(NOT LLVM_BUILD_TOOLS) endif() # Set the depends list as a variable so that it can grow conditionally. +# NOTE: Sync the substitutions in test/lit.cfg when adding to this list. set(LLVM_TEST_DEPENDS UnitTests BugpointPasses diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 9ac7e7a5a23..df1f4a10196 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -224,6 +224,7 @@ for pattern in [r"\bbugpoint\b(?!-)", r"\bllvm-link\b", r"\bllvm-lto\b", r"\bllvm-mc\b", + r"\bllvm-mcmarkup\b", r"\bllvm-nm\b", r"\bllvm-objdump\b", r"\bllvm-ranlib\b", @@ -244,6 +245,8 @@ for pattern in [r"\bbugpoint\b(?!-)", r"\bFileUpdate\b", r"\bc-index-test\b", r"\bfpcmp\b", + r"\bobj2yaml\b", + r"\byaml2obj\b", # Handle these specially as they are strings searched # for during testing. r"\| \bcount\b", |

