[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/5] tests: Skip pata_test on i386-efi
From: |
Glenn Washburn |
Subject: |
[PATCH v3 2/5] tests: Skip pata_test on i386-efi |
Date: |
Sun, 6 Feb 2022 16:00:09 -0600 |
In comparison to other i386 targets, on i386-efi the Q35 QEMU machine type
is used to do the testing to be able to make use of the EFI firmware in
QEMU. On the Q35 machine type there is no way to use ATA to communicate with
an IDE, only AHCI.
Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
---
tests/pata_test.in | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tests/pata_test.in b/tests/pata_test.in
index 27dccec19..31144a8fd 100644
--- a/tests/pata_test.in
+++ b/tests/pata_test.in
@@ -29,6 +29,9 @@ case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
# PLATFORM: no ATA on ARC platforms (they use SCSI)
*-arc)
exit 77;;
+ # QEMU: no ATA on Q35 machine type (they use AHCI)
+ i386-efi)
+ exit 77;;
# FIXME: No native drivers are available for those
powerpc-ieee1275 | sparc64-ieee1275 | arm*-efi)
exit 77;;
--
2.27.0
- [PATCH v3 0/5] Various test fixes and improvements, Glenn Washburn, 2022/02/06
- [PATCH v3 1/5] tests: Do not remove image file on error in pata_test, Glenn Washburn, 2022/02/06
- [PATCH v3 5/5] tests: Ensure that loopback devices and zfs devices are cleaned up, Glenn Washburn, 2022/02/06
- [PATCH v3 4/5] tests: Ensure that mountpoints are unmounted before exiting, Glenn Washburn, 2022/02/06
- [PATCH v3 3/5] tests: Remove $((BASE#NUM)) bashism in grub-fs-tester, Glenn Washburn, 2022/02/06
- [PATCH v3 2/5] tests: Skip pata_test on i386-efi,
Glenn Washburn <=
- Re: [PATCH v3 0/5] Various test fixes and improvements, Daniel Kiper, 2022/02/08