Skip to content

Commit 2596a1f

Browse files
committed
Added support to run pmem_dt_check.py on P11 FW.
On P11 FW pmem_dt_check.py test is skipped as cpu.get_cpu_arch() returns ppc64le. Signed-off-by: Pavithra <pavrampu@linux.vnet.ibm.com>
1 parent e5cbe37 commit 2596a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

memory/pmem_dt_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def setUp(self):
7777
"""
7878
Build 'ndctl' and setup the binary.
7979
"""
80-
if "powerpc" not in cpu.get_cpu_arch():
80+
if cpu.get_cpu_arch() not in ["powerpc", "ppc64le"]:
8181
self.cancel("Test supported only on POWER arch")
8282

8383
deps = []

0 commit comments

Comments
 (0)