From 9d7a6c8ff52ed78a1ef54690fbcd2a55d9eeae95 Mon Sep 17 00:00:00 2001 From: Sachin Sant Date: Wed, 10 Apr 2024 10:36:41 +0530 Subject: [PATCH] cpu/numatop: Remove POWER10 check commit 25839aa added POWER10 support in numatop upstream project numatop/powerpc: Add power10 support Remove the POWER10 check from the test so that it can run on POWER10. Signed-off-by: Sachin Sant --- cpu/numatop.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cpu/numatop.py b/cpu/numatop.py index f033306ba..469936b17 100644 --- a/cpu/numatop.py +++ b/cpu/numatop.py @@ -18,12 +18,10 @@ import os -from avocado import Test, skipIf +from avocado import Test from avocado.utils import archive, build, process, distro, cpu from avocado.utils.software_manager.manager import SoftwareManager -IS_POWER10 = 'POWER10' in open('/proc/cpuinfo', 'r').read() - class Numatop(Test): @@ -34,8 +32,6 @@ class Numatop(Test): :avocado: tags=cpu,privileged """ - @skipIf(IS_POWER10, - "numatop is not supported on POWER10 Architecture") def setUp(self): ''' Build numatop Test