Skip to content

Commit af976fa

Browse files
jlebondustymabe
authored andcommitted
tests/basic: only run basic.nvme on x86_64 and aarch64
The original `--basic-qemu-scenarios` only ran it on x86_64. In testing, it seems to work at least in aarch64 so we might as well test it. On s390x, it seems like QEMU doesn't support it. On ppc64le, the bootloader complains it's "Not a bootable device!". Follow-up to 6775ab1 ("mantle/kola: copy basic tests into formal kola workflow") and 2f8a427 ("tests/basic: fix basic tests on multi-arch").
1 parent 2f8a427 commit af976fa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

mantle/kola/tests/coretest/core.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ func init() {
8787
Platforms: []string{"qemu"},
8888
ClusterSize: 0,
8989
NativeFuncs: nativeFuncs,
90+
// NVMe in theory is supported on all arches, but the way we test it seems to
91+
// only work on x86_64 and aarch64.
92+
Architectures: []string{"x86_64", "aarch64"},
9093
})
9194
// TODO: Enable DockerPing/DockerEcho once fixed
9295
// TODO: Only enable PodmanPing on non qemu. Needs:

0 commit comments

Comments
 (0)