Add the ids of any target that needs to be rebuilt before running the tests as computed by the backend, to the introspection data for tests and benchmarks. This also includes anything that appears on the test's command line. Without this information, IDEs must update the entire build before running any test. They can now instead selectively build the test executable itself and anything that is needed to run it. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>pull/7698/head
parent
0b0873c743
commit
fa5c2363eb
7 changed files with 50 additions and 4 deletions
@ -0,0 +1,5 @@ |
||||
## Dependencies listed in test and benchmark introspection |
||||
|
||||
The introspection data for tests and benchmarks now includes the target |
||||
ids for executables and built files that are needed by the test. IDEs can |
||||
use this feature to update the build more quickly before running a test. |
@ -0,0 +1,5 @@ |
||||
#! /usr/bin/env python3 |
||||
|
||||
import sys |
||||
from shutil import copyfile |
||||
copyfile(*sys.argv[1:]) |
Loading…
Reference in new issue