From 01f1c0273b5a9245438c8200c86887c164479b20 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Thu, 24 Jul 2014 23:26:54 +0000 Subject: [PATCH] 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 --- test/CMakeLists.txt | 1 + test/lit.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 3e08a163894..928b87a778c 100644 --- a/test/CMakeLists.txt +++ b/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/test/lit.cfg b/test/lit.cfg index 844cb2bb516..99c05a79489 100644 --- a/test/lit.cfg +++ b/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",