[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v19 19/21] tests/avocado: s390x cpu topology dedicated errors
From: |
Pierre Morel |
Subject: |
[PATCH v19 19/21] tests/avocado: s390x cpu topology dedicated errors |
Date: |
Mon, 3 Apr 2023 18:29:03 +0200 |
Let's test that QEMU refuses to setup a dedicated CPU with
low or medium entitlement.
Signed-off-by: Pierre Morel <pmorel@linux.ibm.com>
---
tests/avocado/s390_topology.py | 54 ++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/tests/avocado/s390_topology.py b/tests/avocado/s390_topology.py
index 702b3a8443..02c6a8cbe8 100644
--- a/tests/avocado/s390_topology.py
+++ b/tests/avocado/s390_topology.py
@@ -238,6 +238,7 @@ def test_polarisation(self):
self.check_topology(0, 0, 0, 0, 'medium', False)
+ @skipIf(skip_basis, 'skipping basis tests')
def test_entitlement(self):
"""
This test verifies that QEMU modifies the polarization
@@ -294,6 +295,7 @@ def test_entitlement(self):
self.check_topology(2, 1, 0, 0, 'high', False)
self.check_topology(3, 1, 0, 0, 'high', False)
+ @skipIf(skip_basis, 'skipping basis tests')
def test_dedicated(self):
"""
This test verifies that QEMU modifies the entitlement change correctly
@@ -328,6 +330,7 @@ def test_dedicated(self):
self.check_topology(0, 0, 0, 0, 'high', True)
+ @skipIf(skip_basis, 'skipping basis tests')
def test_socket_full(self):
"""
This test verifies that QEMU does not accept to overload a socket.
@@ -354,3 +357,54 @@ def test_socket_full(self):
res = self.vm.qmp('set-cpu-topology',
{'core-id': 2, 'socket-id': 0, 'book-id': 1})
self.assertEqual(res['return'], {})
+
+ def test_dedicated_error(self):
+ """
+ This test verifies that QEMU refuses to lower the entitlement
+ of a dedicated CPU
+
+ :avocado: tags=arch:s390x
+ :avocado: tags=machine:s390-ccw-virtio
+ """
+ self.kernel_init()
+ self.vm.launch()
+ self.wait_for_console_pattern('no job control')
+
+ self.system_init()
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'dedicated': True})
+ self.assertEqual(res['return'], {})
+
+ self.check_topology(0, 0, 0, 0, 'high', True)
+
+ exec_command(self, 'echo 1 > /sys/devices/system/cpu/dispatching')
+ time.sleep(0.2)
+ exec_command_and_wait_for_pattern(self,
+ '/bin/cat /sys/devices/system/cpu/dispatching', '1')
+
+ self.check_topology(0, 0, 0, 0, 'high', True)
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'low', 'dedicated':
True})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'low'})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'medium', 'dedicated':
True})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'medium'})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'low', 'dedicated':
False})
+ self.assertEqual(res['return'], {})
+
+ res = self.vm.qmp('set-cpu-topology',
+ {'core-id': 0, 'entitlement': 'medium', 'dedicated':
False})
+ self.assertEqual(res['return'], {})
--
2.31.1
- Re: [PATCH v19 14/21] tests/avocado: s390x cpu topology core, (continued)
- [PATCH v19 18/21] tests/avocado: s390x cpu topology test socket full, Pierre Morel, 2023/04/03
- [PATCH v19 17/21] tests/avocado: s390x cpu topology test dedicated CPU, Pierre Morel, 2023/04/03
- [PATCH v19 15/21] tests/avocado: s390x cpu topology polarisation, Pierre Morel, 2023/04/03
- [PATCH v19 21/21] tests/avocado: s390x cpu topology query-cpu-polarization, Pierre Morel, 2023/04/03
- [PATCH v19 20/21] tests/avocado: s390x cpu topology bad move, Pierre Morel, 2023/04/03
- [PATCH v19 19/21] tests/avocado: s390x cpu topology dedicated errors,
Pierre Morel <=
- [PATCH v19 05/21] s390x/cpu topology: resetting the Topology-Change-Report, Pierre Morel, 2023/04/03