Skip to content

Commit

Permalink
mantle/kola/tests: disable RAID tests on aarch64/ppc64le
Browse files Browse the repository at this point in the history
On those architectures, the root partition is placed on partition 3
instead of partition 4 due to a Butane bug that's difficult to fix:

coreos/fedora-coreos-tracker#855 (comment)
  • Loading branch information
bgilbert authored and ravanelli committed Aug 25, 2021
1 parent 27bae23 commit 6cfbd3c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions mantle/kola/tests/misc/boot-mirror.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ func init() {
ClusterSize: 0,
Name: `coreos.boot-mirror`,
Platforms: []string{"qemu-unpriv"},
// aarch64 and ppc64le have buggy partition layouts
// https://github.com/coreos/fedora-coreos-tracker/issues/855#issuecomment-896387343
// Can't mirror boot disk on s390x
ExcludeArchitectures: []string{"s390x"},
ExcludeArchitectures: []string{"aarch64", "ppc64le", "s390x"},
// skipping this test on UEFI until https://github.com/coreos/coreos-assembler/issues/2039
// gets resolved.
ExcludeFirmwares: []string{"uefi"},
Expand All @@ -71,9 +73,11 @@ func init() {
ClusterSize: 0,
Name: `coreos.boot-mirror.luks`,
Platforms: []string{"qemu-unpriv"},
// aarch64 and ppc64le have buggy partition layouts
// https://github.com/coreos/fedora-coreos-tracker/issues/855#issuecomment-896387343
// Can't mirror boot disk on s390x, and qemu s390x doesn't
// support TPM
ExcludeArchitectures: []string{"s390x"},
ExcludeArchitectures: []string{"aarch64", "ppc64le", "s390x"},
// skipping this test on UEFI until https://github.com/coreos/coreos-assembler/issues/2039
// gets resolved.
ExcludeFirmwares: []string{"uefi"},
Expand Down

0 comments on commit 6cfbd3c

Please sign in to comment.