Message ID | 20250327200738.1524401-8-adityag@linux.ibm.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Power11 support for QEMU [PowerNV] | expand |
On 3/27/25 21:07, Aditya Gupta wrote: > With all Power11 support in place, add Power11 PowerNV test. > > Cc: Cédric Le Goater <clg@kaod.org> > Cc: Frédéric Barrat <fbarrat@linux.ibm.com> > Cc: Mahesh J Salgaonkar <mahesh@linux.ibm.com> > Cc: Madhavan Srinivasan <maddy@linux.ibm.com> > Cc: Nicholas Piggin <npiggin@gmail.com> > Signed-off-by: Aditya Gupta <adityag@linux.ibm.com> > --- > tests/functional/test_ppc64_powernv.py | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/tests/functional/test_ppc64_powernv.py b/tests/functional/test_ppc64_powernv.py > index 2b4db1cf99b4..9ada832b7816 100755 > --- a/tests/functional/test_ppc64_powernv.py > +++ b/tests/functional/test_ppc64_powernv.py > @@ -116,5 +116,9 @@ def test_powernv10(self): > self.set_machine('powernv10') > self.do_test_ppc64_powernv('P10') > > + def test_powernv11(self): > + self.set_machine('powernv11') > + self.do_test_ppc64_powernv('Power11') > + > if __name__ == '__main__': > LinuxKernelTest.main() Reviewed-by: Cédric Le Goater <clg@redhat.com> Thanks, C.
diff --git a/tests/functional/test_ppc64_powernv.py b/tests/functional/test_ppc64_powernv.py index 2b4db1cf99b4..9ada832b7816 100755 --- a/tests/functional/test_ppc64_powernv.py +++ b/tests/functional/test_ppc64_powernv.py @@ -116,5 +116,9 @@ def test_powernv10(self): self.set_machine('powernv10') self.do_test_ppc64_powernv('P10') + def test_powernv11(self): + self.set_machine('powernv11') + self.do_test_ppc64_powernv('Power11') + if __name__ == '__main__': LinuxKernelTest.main()
With all Power11 support in place, add Power11 PowerNV test. Cc: Cédric Le Goater <clg@kaod.org> Cc: Frédéric Barrat <fbarrat@linux.ibm.com> Cc: Mahesh J Salgaonkar <mahesh@linux.ibm.com> Cc: Madhavan Srinivasan <maddy@linux.ibm.com> Cc: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Aditya Gupta <adityag@linux.ibm.com> --- tests/functional/test_ppc64_powernv.py | 4 ++++ 1 file changed, 4 insertions(+)