diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2022-03-15 11:31:57 -0400 |
---|---|---|
committer | Jeff Lane <jeffrey.lane@canonical.com> | 2022-03-15 11:31:57 -0400 |
commit | c2ba793fea2ace578aedb86113255180757ce7bb (patch) | |
tree | a995d43a2f426e89f04ab6449ec1f772f4872f87 | |
parent | 302e608fa6f3fb6fe1b996eb172368dc03e9fcac (diff) |
[FIX] cstates jobs no longer run on s390x arch lp: #1960476
-rw-r--r-- | units/cpu/jobs.pxu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/units/cpu/jobs.pxu b/units/cpu/jobs.pxu index 6d1321a..2c7b588 100644 --- a/units/cpu/jobs.pxu +++ b/units/cpu/jobs.pxu @@ -140,7 +140,7 @@ id: cpu/cstates estimated_duration: 10.0 requires: executable.name == 'fwts' - cpuinfo.platform not in ("aarch64", "armv7l") + cpuinfo.platform not in ("aarch64", "armv7l", "s390x") user: root _summary: Run C-States tests @@ -157,7 +157,7 @@ plugin: attachment category_id: com.canonical.plainbox::cpu estimated_duration: 0.5 id: cpu/cstates_results.log -requires: cpuinfo.platform not in ("aarch64", "armv7l") +requires: cpuinfo.platform not in ("aarch64", "armv7l", "s390x") after: cpu/cstates command: [ -e "${PLAINBOX_SESSION_SHARE}"/fwts_cstates_results.log ] && cat "${PLAINBOX_SESSION_SHARE}"/fwts_cstates_results.log |