diff options
| author | Aditya Gupta <adityag@linux.ibm.com> | 2025-09-25 23:00:49 +0530 |
|---|---|---|
| committer | Harsh Prateek Bora <harshpb@linux.ibm.com> | 2025-09-28 23:22:07 +0530 |
| commit | 5f810b912eea7d91c55927a1bde94f61d7c9e8a0 (patch) | |
| tree | 3bd34c3cff5869086e7ae59258cebaab07c4f3b8 /tests | |
| parent | 968f1af16aa8da8927eb167e57b224dc58f67637 (diff) | |
| download | focaccia-qemu-5f810b912eea7d91c55927a1bde94f61d7c9e8a0.tar.gz focaccia-qemu-5f810b912eea7d91c55927a1bde94f61d7c9e8a0.zip | |
tests/powernv: Add PowerNV test for Power11
With all Power11 support in place, add Power11 PowerNV test. Reviewed-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Aditya Gupta <adityag@linux.ibm.com> Tested-by: Amit Machhiwal <amachhiw@linux.ibm.com> Tested-by: Cédric Le Goater <clg@redhat.com> Signed-off-by: Harsh Prateek Bora <harshpb@linux.ibm.com> Link: https://lore.kernel.org/r/20250925173049.891406-9-adityag@linux.ibm.com Message-ID: <20250925173049.891406-9-adityag@linux.ibm.com>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/functional/ppc64/test_powernv.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/functional/ppc64/test_powernv.py b/tests/functional/ppc64/test_powernv.py index 2b4db1cf99..9ada832b78 100755 --- a/tests/functional/ppc64/test_powernv.py +++ b/tests/functional/ppc64/test_powernv.py @@ -116,5 +116,9 @@ class powernvMachine(LinuxKernelTest): 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() |