MAINTAINERS: Cover docs/igd-assign.txt in VFIO section
[qemu/ar7.git] / tests / acceptance / pc_cpu_hotplug_props.py
blobe49bf33fc5a1b6d1064e7e6d6a46639478f8dc2f
2 # Ensure CPU die-id can be omitted on -device
4 # Copyright (c) 2019 Red Hat Inc
6 # Author:
7 # Eduardo Habkost <ehabkost@redhat.com>
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2.1 of the License, or (at your option) any later version.
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # Lesser General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 from avocado_qemu import Test
25 class OmittedCPUProps(Test):
26 """
27 :avocado: tags=arch:x86_64
28 """
29 def test_no_die_id(self):
30 self.vm.add_args('-nodefaults', '-S')
31 self.vm.add_args('-smp', '1,sockets=2,cores=2,threads=2,maxcpus=8')
32 self.vm.add_args('-cpu', 'qemu64')
33 self.vm.add_args('-device', 'qemu64-x86_64-cpu,socket-id=1,core-id=0,thread-id=0')
34 self.vm.launch()
35 self.assertEquals(len(self.vm.command('query-cpus')), 2)