From: Wainer dos Santos Moschetta <wainersm@redhat.com>
To: qemu-devel@nongnu.org
Cc: philmd@redhat.com, jsnow@redhat.com, ehabkost@redhat.com,
crosa@redhat.com
Subject: [Qemu-devel] [PATCH 2/3] tests/acceptance: Introduce the "accel" tag
Date: Fri, 28 Jun 2019 11:02:16 -0400 [thread overview]
Message-ID: <20190628150217.32659-3-wainersm@redhat.com> (raw)
In-Reply-To: <20190628150217.32659-1-wainersm@redhat.com>
Some test cases may boot a VM with accelerator that isn't actually
enabled on the QEMU binary or present in the host. In this case
the test case is gonna fail miserably, unless it can be skipped.
This change introduces the "accel" tag, used to mark the test
case requires a given accelerator(s). It was implemented a
mechanism to check the given accelerator is available, and if not
then the test case is skipped.
Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
---
tests/acceptance/avocado_qemu/__init__.py | 5 ++
tests/acceptance/avocado_qemu/accel.py | 60 +++++++++++++++++++++++
2 files changed, 65 insertions(+)
create mode 100644 tests/acceptance/avocado_qemu/accel.py
diff --git a/tests/acceptance/avocado_qemu/__init__.py b/tests/acceptance/avocado_qemu/__init__.py
index 2b236a1cf0..f823f7525b 100644
--- a/tests/acceptance/avocado_qemu/__init__.py
+++ b/tests/acceptance/avocado_qemu/__init__.py
@@ -18,6 +18,7 @@ SRC_ROOT_DIR = os.path.join(os.path.dirname(__file__), '..', '..', '..')
sys.path.append(os.path.join(SRC_ROOT_DIR, 'python'))
from qemu import QEMUMachine
+from .accel import is_accel_available
def is_readable_executable_file(path):
return os.path.isfile(path) and os.access(path, os.R_OK | os.X_OK)
@@ -65,6 +66,10 @@ class Test(avocado.Test):
if self.qemu_bin is None:
self.cancel("No QEMU binary defined or found in the source tree")
+ for accel in self.tags.get('accel', []):
+ if not is_accel_available(accel, self.qemu_bin):
+ self.cancel("Accelerator %s not available" % accel)
+
def _new_vm(self, *args):
vm = QEMUMachine(self.qemu_bin)
if args:
diff --git a/tests/acceptance/avocado_qemu/accel.py b/tests/acceptance/avocado_qemu/accel.py
new file mode 100644
index 0000000000..21f7240d56
--- /dev/null
+++ b/tests/acceptance/avocado_qemu/accel.py
@@ -0,0 +1,60 @@
+# Utilities for using QEMU accelerators on tests.
+#
+# Copyright (c) 2019 Red Hat, Inc.
+#
+# Author:
+# Wainer dos Santos Moschetta <wainersm@redhat.com>
+#
+# This work is licensed under the terms of the GNU GPL, version 2 or
+# later. See the COPYING file in the top-level directory.
+
+from qemu import QEMUMachine
+from qemu import kvm_available
+
+def list_accel(qemu_bin):
+ """
+ List accelerators enabled in the binary.
+
+ :param qemu_bin: path to the QEMU binary.
+ :type qemu_bin: str
+ :returns: list of accelerator names.
+ :rtype: list
+ """
+ vm = QEMUMachine(qemu_bin)
+ vm.set_qmp_monitor(disabled=True)
+ vm.add_args('-accel', 'help')
+ vm.launch()
+ vm.wait()
+ if vm.exitcode() != 0:
+ raise Exception("Failed to get the accelerators in %s" % qemu_bin)
+ lines = vm.get_log().splitlines()
+ # skip first line which is the output header.
+ return [l for l in lines[1:] if l]
+
+def _tcg_avail_checker(qemu_bin):
+ # checks TCG is enabled in the binary only.
+ return 'tcg' in list_accel(qemu_bin)
+
+def _kvm_avail_checker(qemu_bin):
+ # checks KVM is present in the host as well as enabled in the binary.
+ return kvm_available() and "kvm" in list_accel(qemu_bin)
+
+_CHECKERS = {"tcg": _tcg_avail_checker, "kvm": _kvm_avail_checker}
+
+def is_accel_available(accel, qemu_bin):
+ """
+ Check the accelerator is available (enabled in the binary as well as
+ present on host).
+
+ :param accel: accelerator's name.
+ :type accel: str
+ :param qemu_bin: path to the QEMU binary.
+ :type qemu_bin: str
+ :returns: True if accelerator is available, False otherwise.
+ :rtype: boolean
+ """
+ checker = _CHECKERS.get(accel, None)
+ if checker:
+ return checker(qemu_bin)
+ raise Exception("Availability checker not implemented for %s accelerator." %
+ accel)
--
2.21.0
next prev parent reply other threads:[~2019-06-28 15:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-28 15:02 [Qemu-devel] [PATCH 0/3] Acceptance tests: boot Linux with KVM test Wainer dos Santos Moschetta
2019-06-28 15:02 ` [Qemu-devel] [PATCH 1/3] python/qemu: Allow to launch the VM without qmp Wainer dos Santos Moschetta
2019-06-28 15:02 ` Wainer dos Santos Moschetta [this message]
2019-06-28 15:02 ` [Qemu-devel] [PATCH 3/3] tests/acceptance: Add boot linux with kvm test Wainer dos Santos Moschetta
2019-06-28 20:18 ` Eduardo Habkost
2019-06-30 17:39 ` Cleber Rosa
2019-07-01 18:34 ` Eduardo Habkost
2019-07-01 20:29 ` Cleber Rosa
2019-07-05 15:43 ` Wainer dos Santos Moschetta
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190628150217.32659-3-wainersm@redhat.com \
--to=wainersm@redhat.com \
--cc=crosa@redhat.com \
--cc=ehabkost@redhat.com \
--cc=jsnow@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).