[lldb/Test] Don't add a check-* target as dependency in add_lit_testsuite

This causes the toplevel "test-depends" target, which should only build
all the dependencies necessary for running tests, to suddenaly also run
the check-lldb-repro-capture tests.

Instead add check-lldb-repro-capture as a dependency to check-lldb-repro
with a separate explicit add_dependencies call.
This commit is contained in:
Martin Storsjö 2020-01-23 09:42:43 +02:00
parent 6600766453
commit 1db1b8b8b3
1 changed files with 2 additions and 1 deletions

View File

@ -28,4 +28,5 @@ add_lit_testsuite(check-lldb-repro
"Running lldb shell test suite with reproducer replay"
${CMAKE_CURRENT_BINARY_DIR}
PARAMS "lldb-run-with-repro=capture"
DEPENDS lldb-test-deps check-lldb-repro-capture)
DEPENDS lldb-test-deps)
add_dependencies(check-lldb-repro check-lldb-repro-capture)