diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-12-16 14:59:44 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-01-06 18:41:32 +0400 |
commit | d77799ccda4baca822308ed1648a3c72d46cf74e (patch) | |
tree | e8d124f20a50c3b8c3a92c8e7073998acf42b13a /tests/migration-helpers.h | |
parent | 1409c047c17a06ece437c73626598aa7c06ba116 (diff) | |
download | qemu-d77799ccda4baca822308ed1648a3c72d46cf74e.zip qemu-d77799ccda4baca822308ed1648a3c72d46cf74e.tar.gz qemu-d77799ccda4baca822308ed1648a3c72d46cf74e.tar.bz2 |
tests: add migration-helpers unit
Move a few helper functions from migration-test.c to migration-helpers.c
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'tests/migration-helpers.h')
-rw-r--r-- | tests/migration-helpers.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/migration-helpers.h b/tests/migration-helpers.h new file mode 100644 index 0000000..a11808b --- /dev/null +++ b/tests/migration-helpers.h @@ -0,0 +1,37 @@ +/* + * QTest migration helpers + * + * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates + * based on the vhost-user-test.c that is: + * Copyright (c) 2014 Virtual Open Systems Sarl. + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + * + */ +#ifndef MIGRATION_HELPERS_H_ +#define MIGRATION_HELPERS_H_ + +#include "libqtest.h" + +extern bool got_stop; + +GCC_FMT_ATTR(3, 4) +QDict *wait_command_fd(QTestState *who, int fd, const char *command, ...); + +GCC_FMT_ATTR(2, 3) +QDict *wait_command(QTestState *who, const char *command, ...); + +GCC_FMT_ATTR(3, 4) +void migrate_qmp(QTestState *who, const char *uri, const char *fmt, ...); + +QDict *migrate_query(QTestState *who); + +void wait_for_migration_status(QTestState *who, + const char *goal, const char **ungoals); + +void wait_for_migration_complete(QTestState *who); + +void wait_for_migration_fail(QTestState *from, bool allow_active); + +#endif /* MIGRATION_HELPERS_H_ */ |