2018-05-30 20:41:52 +02:00
|
|
|
# Version check example test
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Author:
|
|
|
|
# Cleber Rosa <crosa@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.
|
|
|
|
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
from avocado_qemu import QemuSystemTest
|
2018-05-30 20:41:52 +02:00
|
|
|
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
class Version(QemuSystemTest):
|
2018-05-30 20:41:52 +02:00
|
|
|
"""
|
|
|
|
:avocado: tags=quick
|
2023-02-17 21:11:46 +01:00
|
|
|
:avocado: tags=machine:none
|
2018-05-30 20:41:52 +02:00
|
|
|
"""
|
|
|
|
def test_qmp_human_info_version(self):
|
2020-01-29 22:23:44 +01:00
|
|
|
self.vm.add_args('-nodefaults')
|
2018-05-30 20:41:52 +02:00
|
|
|
self.vm.launch()
|
2023-10-06 17:41:15 +02:00
|
|
|
res = self.vm.cmd('human-monitor-command',
|
|
|
|
command_line='info version')
|
2023-11-14 15:48:31 +01:00
|
|
|
self.assertRegex(res, r'^(\d+\.\d+\.\d)')
|