[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v20 20/21] tests/avocado: s390x cpu topology bad move
From: |
Pierre Morel |
Subject: |
[PATCH v20 20/21] tests/avocado: s390x cpu topology bad move |
Date: |
Tue, 25 Apr 2023 18:14:55 +0200 |
This test verifies that QEMU refuses to move a CPU to an
unexistant location.
Signed-off-by: Pierre Morel <pmorel@linux.ibm.com>
---
tests/avocado/s390_topology.py | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/tests/avocado/s390_topology.py b/tests/avocado/s390_topology.py
index 37fffc2dbb..4516e5e46f 100644
--- a/tests/avocado/s390_topology.py
+++ b/tests/avocado/s390_topology.py
@@ -412,3 +412,28 @@ def test_dedicated_error(self):
res = self.vm.qmp('set-cpu-topology',
{'core-id': 0, 'entitlement': 'medium', 'dedicated':
False})
self.assertEqual(res['return'], {})
+
+ def test_move_error(self):
+ """
+ This test verifies that QEMU refuses to move a CPU to an
+ unexistant location
+
+ :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, 'drawer-id': 1})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology', {'core-id': 0, 'book-id': 1})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ res = self.vm.qmp('set-cpu-topology', {'core-id': 0, 'socket-id': 1})
+ self.assertEqual(res['error']['class'], 'GenericError')
+
+ self.check_topology(0, 0, 0, 0, 'medium', False)
--
2.31.1
- Re: [PATCH v20 02/21] s390x/cpu topology: add topology entries on CPU hotplug, (continued)
- [PATCH v20 12/21] qapi/s390x/cpu topology: query-cpu-polarization qmp command, Pierre Morel, 2023/04/25
- [PATCH v20 13/21] docs/s390x/cpu topology: document s390x cpu topology, Pierre Morel, 2023/04/25
- [PATCH v20 17/21] tests/avocado: s390x cpu topology test dedicated CPU, Pierre Morel, 2023/04/25
- [PATCH v20 03/21] target/s390x/cpu topology: handle STSI(15) and build the SYSIB, Pierre Morel, 2023/04/25
- [PATCH v20 21/21] tests/avocado: s390x cpu topology query-cpu-polarization, Pierre Morel, 2023/04/25
- [PATCH v20 16/21] tests/avocado: s390x cpu topology entitlement tests, Pierre Morel, 2023/04/25
- [PATCH v20 09/21] machine: adding s390 topology to query-cpu-fast, Pierre Morel, 2023/04/25
- [PATCH v20 20/21] tests/avocado: s390x cpu topology bad move,
Pierre Morel <=
- [PATCH v20 05/21] s390x/cpu topology: resetting the Topology-Change-Report, Pierre Morel, 2023/04/25
- [PATCH v20 04/21] s390x/sclp: reporting the maximum nested topology entries, Pierre Morel, 2023/04/25
- [PATCH v20 10/21] machine: adding s390 topology to info hotpluggable-cpus, Pierre Morel, 2023/04/25
- [PATCH v20 01/21] s390x/cpu topology: add s390 specifics to CPU topology, Pierre Morel, 2023/04/25
- [PATCH v20 11/21] qapi/s390x/cpu topology: CPU_POLARIZATION_CHANGE qapi event, Pierre Morel, 2023/04/25
- [PATCH v20 19/21] tests/avocado: s390x cpu topology dedicated errors, Pierre Morel, 2023/04/25
- [PATCH v20 18/21] tests/avocado: s390x cpu topology test socket full, Pierre Morel, 2023/04/25
- [PATCH v20 14/21] tests/avocado: s390x cpu topology core, Pierre Morel, 2023/04/25