diff options
author | Bibo Mao <maobibo@loongson.cn> | 2025-06-12 17:03:19 +0800 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2025-07-14 09:16:40 -0400 |
commit | c43ca0de62749286ee099baaf628b7f7b6e9844f (patch) | |
tree | 3f41730f63150c741bf834cafcefe6146ed3c59d | |
parent | 73e2cba058c74c9a0d5b640711a1ff2428551952 (diff) | |
download | qemu-c43ca0de62749286ee099baaf628b7f7b6e9844f.zip qemu-c43ca0de62749286ee099baaf628b7f7b6e9844f.tar.gz qemu-c43ca0de62749286ee099baaf628b7f7b6e9844f.tar.bz2 |
rebuild-expected-aml.sh: Add support for LoongArch
Update the list of supported architectures to include LoongArch.
Signed-off-by: Bibo Mao <maobibo@loongson.cn>
Message-Id: <20250612090321.3416594-4-maobibo@loongson.cn>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rwxr-xr-x | tests/data/acpi/rebuild-expected-aml.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/acpi/rebuild-expected-aml.sh b/tests/data/acpi/rebuild-expected-aml.sh index c1092fb..cbf9ffe 100755 --- a/tests/data/acpi/rebuild-expected-aml.sh +++ b/tests/data/acpi/rebuild-expected-aml.sh @@ -12,7 +12,7 @@ # This work is licensed under the terms of the GNU GPLv2. # See the COPYING.LIB file in the top-level directory. -qemu_arches="x86_64 aarch64 riscv64" +qemu_arches="x86_64 aarch64 riscv64 loongarch64" if [ ! -e "tests/qtest/bios-tables-test" ]; then echo "Test: bios-tables-test is required! Run make check before this script." @@ -37,7 +37,7 @@ if [ -z "$qemu_bins" ]; then echo "Only the following architectures are currently supported: $qemu_arches" echo "None of these configured!" echo "To fix, run configure \ - --target-list=x86_64-softmmu,aarch64-softmmu,riscv64-softmmu" + --target-list=x86_64-softmmu,aarch64-softmmu,riscv64-softmmu,loongarch64-softmmu" exit 1; fi |