diff options
author | Emanuele Giuseppe Esposito | 2018-06-13 17:07:21 +0200 |
---|---|---|
committer | Paolo Bonzini | 2019-03-07 17:28:24 +0100 |
commit | fc281c802022cb3a73a53386d761daa32dce5cf9 (patch) | |
tree | 1a3ee082e892ccca06dc2528fe68940d2eadb863 /configure | |
parent | tests/libqos: embed allocators instead of malloc-ing them separately (diff) | |
download | qemu-fc281c802022cb3a73a53386d761daa32dce5cf9.tar.gz qemu-fc281c802022cb3a73a53386d761daa32dce5cf9.tar.xz qemu-fc281c802022cb3a73a53386d761daa32dce5cf9.zip |
tests: qgraph API for the qtest driver framework
Add qgraph API that allows to add/remove nodes and edges from the graph,
implementation of Depth First Search to discover the paths and basic unit
test to check correctness of the API.
Included also a main executable that takes care of starting the framework,
create the nodes, set the available drivers/machines, discover the path and
run tests.
graph.h provides the public API to manage the graph nodes/edges
graph_extra.h provides a more private API used successively by the gtest integration part
qos-test.c provides the main executable
Signed-off-by: Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com>
[Paolo's changes compared to the Google Summer of Code submission:
* added subprocess to test options
* refactored object creation to support live migration tests
* removed driver .before callback (unused)
* removed test .after callbacks (replaced by GTest destruction queue)]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7647,7 +7647,7 @@ fi # tests might fail. Prefer to keep the relevant files in their own # directory and symlink the directory instead. DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32 tests/libqos tests/qapi-schema tests/tcg/xtensa tests/qemu-iotests tests/vm" -DIRS="$DIRS tests/fp" +DIRS="$DIRS tests/fp tests/qgraph" DIRS="$DIRS docs docs/interop fsdev scsi" DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas pc-bios/s390-ccw" DIRS="$DIRS roms/seabios roms/vgabios" |