Merge remote-tracking branch 'qemu-project/master'
[qemu/ar7.git] / tests / data / acpi / rebuild-expected-aml.sh
blobc1092fb8ba6e74f42d3429e391785fd818aeabc0
1 #!/usr/bin/env bash
4 # Rebuild expected AML files for acpi unit-test
6 # Copyright (c) 2013 Red Hat Inc.
8 # Authors:
9 # Marcel Apfelbaum <marcel.a@redhat.com>
10 # Igor Mammedov <imammedo@redhat.com>
12 # This work is licensed under the terms of the GNU GPLv2.
13 # See the COPYING.LIB file in the top-level directory.
15 qemu_arches="x86_64 aarch64 riscv64"
17 if [ ! -e "tests/qtest/bios-tables-test" ]; then
18 echo "Test: bios-tables-test is required! Run make check before this script."
19 echo "Run this script from the build directory."
20 exit 1;
23 if grep TARGET_DIRS= config-host.mak; then
24 for arch in $qemu_arches; do
25 if grep TARGET_DIRS= config-host.mak | grep "$arch"-softmmu;
26 then
27 qemu_bins="$qemu_bins ./qemu-system-$arch"
29 done
30 else
31 echo "config-host.mak missing!"
32 echo "Run this script from the build directory."
33 exit 1;
36 if [ -z "$qemu_bins" ]; then
37 echo "Only the following architectures are currently supported: $qemu_arches"
38 echo "None of these configured!"
39 echo "To fix, run configure \
40 --target-list=x86_64-softmmu,aarch64-softmmu,riscv64-softmmu"
41 exit 1;
44 for qemu in $qemu_bins; do
45 if [ ! -e $qemu ]; then
46 echo "Run 'make' to build the following QEMU executables: $qemu_bins"
47 echo "Also, run this script from the build directory."
48 exit 1;
50 TEST_ACPI_REBUILD_AML=y QTEST_QEMU_BINARY=$qemu tests/qtest/bios-tables-test
51 done
53 eval `grep SRC_PATH= config-host.mak`
55 old_allowed_dif=`grep -v -e 'List of comma-separated changed AML files to ignore' ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h`
57 echo '/* List of comma-separated changed AML files to ignore */' > ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h
59 echo "The files were rebuilt and can be added to git."
60 echo "You can use ${SRC_PATH}/tests/data/acpi/disassemle-aml.sh to disassemble them to ASL."
62 if [ -z "$old_allowed_dif" ]; then
63 echo "Note! Please do not commit expected files with source changes"
64 echo "Note! Please follow the process documented in ${SRC_PATH}/tests/qtest/bios-tables-test.c"