forked from OSchip/llvm-project
[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:
parent
6600766453
commit
1db1b8b8b3
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue