qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 7/8] tests/acceptance/migration.py: cancel test on s390x


From: Wainer dos Santos Moschetta
Subject: Re: [PATCH 7/8] tests/acceptance/migration.py: cancel test on s390x
Date: Mon, 19 Apr 2021 16:11:26 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0


On 4/15/21 6:51 PM, Cleber Rosa wrote:
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 <crosa@redhat.com>
---
  tests/acceptance/migration.py | 6 ++++++
  1 file changed, 6 insertions(+)


Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>



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()




reply via email to

[Prev in Thread] Current Thread [Next in Thread]