[Lldb-commits] [lldb] r326919 - [lldbtestsuite] llvm-objcopy is now required to run the lit tests.
Davide Italiano via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 7 10:06:12 PST 2018
Author: davide
Date: Wed Mar 7 10:06:12 2018
New Revision: 326919
URL: http://llvm.org/viewvc/llvm-project?rev=326919&view=rev
Log:
[lldbtestsuite] llvm-objcopy is now required to run the lit tests.
There's now a test using llvm-objcopy in lit/.
This doesn't fail on the bot(s) because `llvm-objcopy` is probably
already available there, but if you get a fresh checkout and run
`ninja check-lldb` you'll observe the failure as it's not tracking
the dependency correctly. This fixes the problem on my machine,
and probably everywhere else.
Modified:
lldb/trunk/lit/CMakeLists.txt
Modified: lldb/trunk/lit/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/CMakeLists.txt?rev=326919&r1=326918&r2=326919&view=diff
==============================================================================
--- lldb/trunk/lit/CMakeLists.txt (original)
+++ lldb/trunk/lit/CMakeLists.txt Wed Mar 7 10:06:12 2018
@@ -41,6 +41,7 @@ set(LLDB_TEST_DEPS
lldb
lldb-test
llvm-config
+ llvm-objcopy
)
if(NOT LLDB_BUILT_STANDALONE)
More information about the lldb-commits
mailing list