Skip to content

Commit

Permalink
Merge pull request #2795 from sacsant/numatop
Browse files Browse the repository at this point in the history
cpu/numatop: Remove POWER10 check
  • Loading branch information
Naresh-ibm committed Apr 10, 2024
2 parents 3ee8f7a + 9d7a6c8 commit 9def34a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cpu/numatop.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):

Expand All @@ -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
Expand Down

0 comments on commit 9def34a

Please sign in to comment.