Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion io/disk/disk_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def setUp(self):
pkg = ""
device = self.params.get('disk', default=None)
self.disk = disk.get_absolute_disk_path(device)
if 'ppc' not in cpu.get_arch():
if 'power' not in cpu.get_arch():
self.cancel("Processor is not ppc64")
self.dirs = self.params.get('dir', default=self.workdir)
self.fstype = self.params.get('fs', default='ext4')
Expand Down
2 changes: 1 addition & 1 deletion io/pci/pci_hotplug.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def setUp(self):
"""
Setup the device.
"""
if 'ppc' not in cpu.get_arch():
if 'power' not in cpu.get_arch():
self.cancel("Processor is not ppc64")
if os.path.exists('/proc/device-tree/bmc'):
self.cancel("Test Unsupported! on this platform")
Expand Down
2 changes: 1 addition & 1 deletion memory/memhotplug.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def test_hotplug_toggle(self):
self.__error_check()

def test_dlpar_mem_hotplug(self):
if 'ppc' in cpu.get_arch() and 'PowerNV' not in open('/proc/cpuinfo', 'r').read():
if 'power' in cpu.get_arch() and 'PowerNV' not in open('/proc/cpuinfo', 'r').read():
if b"mem_dlpar=yes" in process.system_output("drmgr -C", ignore_status=True, shell=True):
self.log.info("\nDLPAR remove memory operation\n")
for _ in range(len(self.blocks_hotpluggable) // 2):
Expand Down
Loading