On Tue, Jan 21, 2020 at 10:27:51PM -0300, Wainer dos Santos Moschetta wrote: > + def test_aarch64_virt_kvm(self): > + """ > + :avocado: tags=arch:aarch64 > + :avocado: tags=machine:virt > + :avocado: tags=accel:kvm > + """ > + self.do_test_aarch64_virt() > + > + def test_aarch64_virt_tcg(self): > + """ > + :avocado: tags=arch:aarch64 > + :avocado: tags=machine:virt > + :avocado: tags=accel:tcg > + """ > + self.do_test_aarch64_virt() > +
Does do_test_aarch64_virt() add more machine parameters? Also, which cpu type does it choose? The reason I ask is because aarch64 virt will fail to run with KVM unless the appropriate gic version is specified (the gic-version machine parameter). Also the cpu type must be 'host' or 'max'. 'max' is the better choice as it also works for tcg. gic-version also takes 'max' allowing it to auto-select the appropriate version. So if it's not already there somewhere, then please ensure aarch64 has these additional parameters: machine:gic-version=max cpu:max Thanks, drew