[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v3 14/15] tests/qtest/bios-tables-test.c: Enable basic testin
From: |
Igor Mammedov |
Subject: |
Re: [PATCH v3 14/15] tests/qtest/bios-tables-test.c: Enable basic testing for RISC-V |
Date: |
Tue, 25 Jun 2024 14:05:58 +0200 |
On Tue, 25 Jun 2024 13:19:59 +0200
Igor Mammedov <imammedo@redhat.com> wrote:
> On Fri, 21 Jun 2024 17:29:05 +0530
> Sunil V L <sunilvl@ventanamicro.com> wrote:
>
> > Add basic ACPI table test case for RISC-V.
> >
> > Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
> > Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
>
> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
I take ack back for now, since patch most likely to cause failures on weaker
test host (CI infra)
test case never finishes and timeouts on my x86 host while consuming 100%,
======
QTEST_QEMU_BINARY=./qemu-system-riscv64
/tmp/qemu_build/tests/qtest/bios-tables-test
# random seed: R02Sd870403ff62b08e48122105b2700f660
# starting QEMU: exec ./qemu-system-riscv64 -qtest unix:/tmp/qtest-2873960.sock
-qtest-log /dev/null -chardev socket,path=/tmp/qtest-2873960.qmp,id=char0 -mon
chardev=char0,mode=control -display none -audio none -machine none -accel qtest
1..1
# Start of riscv64 tests
# Start of acpi tests
# starting QEMU: exec ./qemu-system-riscv64 -qtest unix:/tmp/qtest-2873960.sock
-qtest-log /dev/null -chardev socket,path=/tmp/qtest-2873960.qmp,id=char0 -mon
chardev=char0,mode=control -display none -audio none -machine virt -accel tcg
-nodefaults -nographic -drive
if=pflash,format=raw,file=pc-bios/edk2-riscv-code.fd,readonly=on -drive
if=pflash,format=raw,file=pc-bios/edk2-riscv-vars.fd,snapshot=on -cdrom
tests/data/uefi-boot-images/bios-tables-test.riscv64.iso.qcow2 -cpu rva22s64
-accel qtest
**
ERROR:../../builds/imammedo/qemu/tests/qtest/acpi-utils.c:158:acpi_find_rsdp_address_uefi:
code should not be reached
Bail out!
ERROR:../../builds/imammedo/qemu/tests/qtest/acpi-utils.c:158:acpi_find_rsdp_address_uefi:
code should not be reached
========
>
> > ---
> > tests/qtest/bios-tables-test.c | 26 ++++++++++++++++++++++++++
> > 1 file changed, 26 insertions(+)
> >
> > diff --git a/tests/qtest/bios-tables-test.c b/tests/qtest/bios-tables-test.c
> > index f4c4704bab..0f9c654e96 100644
> > --- a/tests/qtest/bios-tables-test.c
> > +++ b/tests/qtest/bios-tables-test.c
> > @@ -1977,6 +1977,28 @@ static void test_acpi_microvm_acpi_erst(void)
> > }
> > #endif /* CONFIG_POSIX */
> >
> > +static void test_acpi_riscv64_virt_tcg(void)
> > +{
> > + test_data data = {
> > + .machine = "virt",
> > + .arch = "riscv64",
> > + .tcg_only = true,
> > + .uefi_fl1 = "pc-bios/edk2-riscv-code.fd",
> > + .uefi_fl2 = "pc-bios/edk2-riscv-vars.fd",
> > + .cd =
> > "tests/data/uefi-boot-images/bios-tables-test.riscv64.iso.qcow2",
> > + .ram_start = 0x80000000ULL,
> > + .scan_len = 128ULL * 1024 * 1024,
> > + };
> > +
> > + /*
> > + * RHCT will have ISA string encoded. To reduce the effort
> > + * of updating expected AML file for any new default ISA extension,
> > + * use the profile rva22s64.
> > + */
> > + test_acpi_one("-cpu rva22s64 ", &data);
> > + free_test_data(&data);
> > +}
> > +
> > static void test_acpi_aarch64_virt_tcg(void)
> > {
> > test_data data = {
> > @@ -2455,6 +2477,10 @@ int main(int argc, char *argv[])
> > qtest_add_func("acpi/virt/viot",
> > test_acpi_aarch64_virt_viot);
> > }
> > }
> > + } else if (strcmp(arch, "riscv64") == 0) {
> > + if (has_tcg && qtest_has_device("virtio-blk-pci")) {
> > + qtest_add_func("acpi/virt", test_acpi_riscv64_virt_tcg);
> > + }
> > }
> > ret = g_test_run();
> > boot_sector_cleanup(disk);
>
- Re: [PATCH v3 08/15] tests/data/acpi: Move x86 ACPI tables under x86/${machine} path, (continued)
- [PATCH v3 09/15] tests/data/acpi/virt: Move ARM64 ACPI tables under aarch64/${machine} path, Sunil V L, 2024/06/21
- [PATCH v3 10/15] meson.build: Add RISC-V to the edk2-target list, Sunil V L, 2024/06/21
- [PATCH v3 11/15] pc-bios/meson.build: Add support for RISC-V in unpack_edk2_blobs, Sunil V L, 2024/06/21
- [PATCH v3 12/15] tests/data/acpi/rebuild-expected-aml.sh: Add RISC-V, Sunil V L, 2024/06/21
- [PATCH v3 13/15] tests/qtest/bios-tables-test: Add empty ACPI data files for RISC-V, Sunil V L, 2024/06/21
- [PATCH v3 15/15] tests/qtest/bios-tables-test: Add expected ACPI data files for RISC-V, Sunil V L, 2024/06/21
- [PATCH v3 14/15] tests/qtest/bios-tables-test.c: Enable basic testing for RISC-V, Sunil V L, 2024/06/21