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
2 changes: 1 addition & 1 deletion tests/kola/boot/raid1-boot/aarch64/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## platforms: qemu
## # Root reprovisioning requires at least 4GiB of memory.
## minMemory: 4096
## # Linear RAID is setup on these disks.
## # RAID 1 is setup on these disks.
## additionalDisks: ["10G"]
## # This test includes a lot of disk I/O and needs a higher
## # timeout value than the default.
Expand Down
1 change: 1 addition & 0 deletions tests/kola/boot/raid1-boot/data/commonlib_raid1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ check_bootupctl_components() {
case "$(arch)" in
x86_64) components=("BIOS" "EFI") ;;
aarch64) components=("EFI") ;;
ppc64le) components=("BIOS") ;;
*) fatal "Unhandled architecture: $(arch)" ;;
esac

Expand Down
8 changes: 8 additions & 0 deletions tests/kola/boot/raid1-boot/ppc64le/config.bu
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
variant: fcos
version: 1.6.0
boot_device:
layout: ppc64le
mirror:
devices:
- /dev/vda
- /dev/vdb
1 change: 1 addition & 0 deletions tests/kola/boot/raid1-boot/ppc64le/data
19 changes: 19 additions & 0 deletions tests/kola/boot/raid1-boot/ppc64le/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash
## kola:
## # additionalDisks is only supported on qemu.
## platforms: qemu
## # Root reprovisioning requires at least 4GiB of memory.
## minMemory: 4096
## # RAID 1 is setup on these disks.
## additionalDisks: ["10G"]
## # This test includes a lot of disk I/O and needs a higher
## # timeout value than the default.
## timeoutMin: 15
## architectures: "ppc64le"
## description: Verify updating the bootloader while using RAID 1 works.
## creationDate: 2026-06-11

# shellcheck disable=SC1091
. "$KOLA_EXT_DATA/commonlib_raid1.sh"

check_raid1_boot
2 changes: 1 addition & 1 deletion tests/kola/boot/raid1-boot/x86_64/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## platforms: qemu
## # Root reprovisioning requires at least 4GiB of memory.
## minMemory: 4096
## # Linear RAID is setup on these disks.
## # RAID 1 is setup on these disks.
## additionalDisks: ["10G"]
## # This test includes a lot of disk I/O and needs a higher
## # timeout value than the default.
Expand Down