Because s390x targets it can not currently migrate without a guest running.
Future work may provide a proper guest, but for now, it's safer to cancel the test. Signed-off-by: Cleber Rosa <cr...@redhat.com> --- tests/acceptance/migration.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/acceptance/migration.py b/tests/acceptance/migration.py index b4d46becc6..4174d55c81 100644 --- a/tests/acceptance/migration.py +++ b/tests/acceptance/migration.py @@ -48,6 +48,12 @@ def do_migrate(self, dest_uri, src_uri=None): dest_vm = self.get_vm('-incoming', dest_uri) dest_vm.add_args('-nodefaults', '-no-shutdown') dest_vm.launch() + + cpus = dest_vm.command('query-cpus-fast') + if cpus: + if cpus[0].get('target') == 's390x': + self.cancel('Migration without a guest not possible on s390') + if src_uri is None: src_uri = dest_uri source_vm = self.get_vm() -- 2.25.4