aboutsummaryrefslogtreecommitdiff
path: root/tests/libqos/libqos-pc.c
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2016-09-29 12:32:46 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2016-10-06 16:15:53 +1100
commit61ae5cf3a2e1a7764a60fec69cd8731516d5fb83 (patch)
treed2badf5b2c18e8873ece68426e40d70bfa350531 /tests/libqos/libqos-pc.c
parent2ecd7e2f25a57e8966a15ee50a0afacd4ec067da (diff)
downloadqemu-61ae5cf3a2e1a7764a60fec69cd8731516d5fb83.zip
qemu-61ae5cf3a2e1a7764a60fec69cd8731516d5fb83.tar.gz
qemu-61ae5cf3a2e1a7764a60fec69cd8731516d5fb83.tar.bz2
libqos: use generic qtest_shutdown()
Machine specific shutdown function can be registered by the machine specific qtest_XXX_boot() if needed. So we will not have to test twice the architecture (on boot and on shutdown) if the test can be run on several architectures. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests/libqos/libqos-pc.c')
-rw-r--r--tests/libqos/libqos-pc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libqos/libqos-pc.c b/tests/libqos/libqos-pc.c
index aa17c98..b554758 100644
--- a/tests/libqos/libqos-pc.c
+++ b/tests/libqos/libqos-pc.c
@@ -8,6 +8,7 @@ static QOSOps qos_ops = {
.uninit_allocator = pc_alloc_uninit,
.qpci_init = qpci_init_pc,
.qpci_free = qpci_free_pc,
+ .shutdown = qtest_pc_shutdown,
};
QOSState *qtest_pc_vboot(const char *cmdline_fmt, va_list ap)
@@ -31,5 +32,5 @@ QOSState *qtest_pc_boot(const char *cmdline_fmt, ...)
void qtest_pc_shutdown(QOSState *qs)
{
- return qtest_shutdown(qs);
+ return qtest_common_shutdown(qs);
}