aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIgor Mammedov <imammedo@redhat.com>2019-07-08 05:24:09 -0400
committerMichael S. Tsirkin <mst@redhat.com>2019-07-12 10:56:26 -0400
commitab31b3373eba7e186282aac9f05c4303c309ac27 (patch)
tree9a657c4511055c5226e53519382f9a6640caad50 /tests
parent2bbadb08ce272d65e1f78621002008b07d1e0f03 (diff)
downloadqemu-ab31b3373eba7e186282aac9f05c4303c309ac27.zip
qemu-ab31b3373eba7e186282aac9f05c4303c309ac27.tar.gz
qemu-ab31b3373eba7e186282aac9f05c4303c309ac27.tar.bz2
tests: acpi: do not require IASL for dumping AML blobs
IASL isn't needed when dumping ACPI tables from guest for rebuild purposes. So move this part out from IASL branch. Makes rebuild-expected-aml.sh work without IASL installed on host. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Eric Auger <eric.auger@redhat.com> Message-Id: <20190708092410.11167-2-imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/bios-tables-test.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c
index d863233..13bd166 100644
--- a/tests/bios-tables-test.c
+++ b/tests/bios-tables-test.c
@@ -597,12 +597,10 @@ static void test_acpi_one(const char *params, test_data *data)
test_acpi_rxsdt_table(data);
test_acpi_fadt_table(data);
- if (iasl) {
- if (getenv(ACPI_REBUILD_EXPECTED_AML)) {
- dump_aml_files(data, true);
- } else {
- test_acpi_asl(data);
- }
+ if (getenv(ACPI_REBUILD_EXPECTED_AML)) {
+ dump_aml_files(data, true);
+ } else if (iasl) {
+ test_acpi_asl(data);
}
/*