[PATCH v7 7/7] tests/powernv: Add PowerNV test for Power11

Aditya Gupta posted 7 patches 5 days, 17 hours ago
[PATCH v7 7/7] tests/powernv: Add PowerNV test for Power11
Posted by Aditya Gupta 5 days, 17 hours ago
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()
-- 
2.49.0


Re: [PATCH v7 7/7] tests/powernv: Add PowerNV test for Power11
Posted by Cédric Le Goater 5 days, 5 hours ago
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.