diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-07-24 23:26:54 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-07-24 23:26:54 +0000 |
commit | ab131e86ce4180ca0906a4c556d618a61100afe7 (patch) | |
tree | 6ca03a90e94a1a2c17206b405ea512ceb388bf56 | |
parent | e88aea323489a3b14cafd58b9e2a35785cee9716 (diff) | |
download | bcm5719-llvm-ab131e86ce4180ca0906a4c556d618a61100afe7.tar.gz bcm5719-llvm-ab131e86ce4180ca0906a4c556d618a61100afe7.zip |
Opportunistically fix the builders
A builder complained that it couldn't find llvm-vtabledump, this is
probably because it wasn't a dependency of the 'test' target.
llvm-svn: 213905
-rw-r--r-- | llvm/test/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/test/lit.cfg | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/llvm/test/CMakeLists.txt b/llvm/test/CMakeLists.txt index 3e08a163894..928b87a778c 100644 --- a/llvm/test/CMakeLists.txt +++ b/llvm/test/CMakeLists.txt @@ -44,6 +44,7 @@ set(LLVM_TEST_DEPENDS llvm-rtdyld llvm-symbolizer llvm-tblgen + llvm-vtabledump macho-dump opt FileCheck diff --git a/llvm/test/lit.cfg b/llvm/test/lit.cfg index 844cb2bb516..99c05a79489 100644 --- a/llvm/test/lit.cfg +++ b/llvm/test/lit.cfg @@ -228,6 +228,7 @@ for pattern in [r"\bbugpoint\b(?!-)", r"\bllvm-rtdyld\b", r"\bllvm-size\b", r"\bllvm-tblgen\b", + r"\bllvm-vtabledump\b", r"\bllvm-c-test\b", r"\bmacho-dump\b", NOJUNK + r"\bopt\b", |