Skip to content

Commit

Permalink
reduced prgenv's included to reduce test duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
JPRichings committed Sep 25, 2024
1 parent 300d69a commit 22cf054
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/env/counters_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CrayCountersEnergyTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the node energy pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/energy"

Expand All @@ -34,7 +34,7 @@ class CrayCountersPowerTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the node power pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/power"

Expand All @@ -52,7 +52,7 @@ class CrayCountersCPUEnergyTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the cpu energy pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/cpu_energy"

Expand All @@ -70,7 +70,7 @@ class CrayCountersCPUPowerTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the cpu power pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/cpu_power"

Expand All @@ -88,7 +88,7 @@ class CrayCountersMemoryEnergyTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the memory energy pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/memory_energy"

Expand All @@ -106,7 +106,7 @@ class CrayCountersMemPowerTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the memory power pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/memory_power"

Expand All @@ -124,7 +124,7 @@ class CrayCountersCPU0TempTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the cpu 0 temperature pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/cpu0_temp"

Expand All @@ -142,7 +142,7 @@ class CrayCountersCPU1TempTest(rfm.RunOnlyRegressionTest):

descr = "Checks whether the cpu 1 temperature pm counter is accessible and reporting"
valid_systems = ["archer2:compute"]
valid_prog_environs = ["PrgEnv-cray", "PrgEnv-gnu", "PrgEnv-aocc"]
valid_prog_environs = ["PrgEnv-cray"]
sourcesdir = None
executable = "cat /sys/cray/pm_counters/cpu1_temp"

Expand Down

0 comments on commit 22cf054

Please sign in to comment.