From 5f4c6dcc11acb2cd33f1e5eee5539f5779e7df15 Mon Sep 17 00:00:00 2001 From: Davide Italiano Date: Wed, 17 Apr 2019 23:43:01 +0000 Subject: [PATCH] [Cmake] Add missing dependency for running tests. This is needed now that we marked lldb-test as EXCLUDE_ALL, to make sure `ninja lldb-test-deps` doesn't fail. llvm-svn: 358625 --- lldb/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt index 4bf6168..a826c25 100644 --- a/lldb/CMakeLists.txt +++ b/lldb/CMakeLists.txt @@ -79,6 +79,9 @@ if(LLDB_INCLUDE_TESTS) list(APPEND LLDB_TEST_DEPS darwin-debug) endif() + # lldb-test is an hard dependency for the testsuite. + list(APPEND LLDB_TEST_DEPS lldb-test) + if(TARGET lldb-server) list(APPEND LLDB_TEST_DEPS lldb-server) endif() -- 2.7.4