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
6 changes: 3 additions & 3 deletions providers/base/units/cpu/jobs.pxu
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ estimated_duration: 150.0
requires:
executable.name == 'fwts'
'userspace' in cpuinfo.governors
cpuinfo.platform not in ("ppc64el", "s390x")
cpuinfo.platform not in ("ppc64el", "ppc64le", "s390x")
user: root
environ: PLAINBOX_SESSION_SHARE LD_LIBRARY_PATH SNAP
command:
Expand All @@ -27,7 +27,7 @@ estimated_duration: 150.0
requires:
executable.name == 'fwts'
'userspace' in cpuinfo.governors
cpuinfo.platform not in ("ppc64el", "s390x")
cpuinfo.platform not in ("ppc64el", "ppc64le", "s390x")
user: root
environ: PLAINBOX_SESSION_SHARE LD_LIBRARY_PATH SNAP
command:
Expand Down Expand Up @@ -212,7 +212,7 @@ id: cpu/cstates
estimated_duration: 10.0
requires:
executable.name == 'fwts'
cpuinfo.platform not in ("aarch64", "armv7l", "s390x")
cpuinfo.platform not in ("aarch64", "armv7l", "ppc64el", "ppc64le", "s390x")
user: root
category_id: com.canonical.plainbox::cpu
_summary:
Expand Down
6 changes: 3 additions & 3 deletions providers/base/units/miscellanea/jobs.pxu
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,12 @@ category_id: com.canonical.plainbox::miscellanea
estimated_duration: 10.0
requires:
executable.name == 'fwts'
cpuinfo.platform in ("ppc64el")
cpuinfo.platform in ("ppc64el", "ppc64le")
user: root
_description:
Run Firmware Test Suite (fwts) olog tests (ppc64el only).
Run Firmware Test Suite (fwts) olog tests (IBM Power only).
_summary:
Run FWTS OLOG check on ppc64el
Run FWTS OLOG check on Power systems
environ: PLAINBOX_SESSION_SHARE
command:
checkbox-support-fwts_test -l "$PLAINBOX_SESSION_SHARE"/fwts_olog_results.log -t olog
Expand Down
4 changes: 2 additions & 2 deletions providers/base/units/power-management/jobs.pxu
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ category_id: com.canonical.plainbox::power-management
id: power-management/tickless_idle
flags: also-after-suspend
estimated_duration: 1.0
requires: cpuinfo.platform in ('i386', 'x86_64', 'ppc64el', 'pSeries')
requires: cpuinfo.platform in ('i386', 'x86_64', 'ppc64el', 'ppc64le', 'pSeries')
_purpose: Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple regression check)
command:
zgrep 'CONFIG_NO_HZ=y' /boot/config-"$(uname -r)" >/dev/null 2>&1 || ( echo "WARNING: Tickless Idle is NOT set" >&2 && exit 1 )
Expand Down Expand Up @@ -531,7 +531,7 @@ category_id: com.canonical.plainbox::power-management
id: power-management/tickless_idle_{kernel}
template-id: power-management/tickless_idle_kernel
estimated_duration: 1.0
requires: cpuinfo.platform in ('i386', 'x86_64', 'ppc64el', 'pSeries')
requires: cpuinfo.platform in ('i386', 'x86_64', 'ppc64el', 'ppc64le', 'pSeries')
_purpose: Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple regression check)
command:
zgrep 'CONFIG_NO_HZ=y' /snap/{kernel}/current/config-"$(uname -r)" >/dev/null 2>&1 || ( echo "WARNING: Tickless Idle is NOT set" >&2 && exit 1 )
Expand Down