Browse Source

tests/data/acpi: disassemble-aml: rename and change interpreter line

/usr/bin/bash isn't guaranteed to be present. Switch
to /usr/bin/env bash.

Specifically, on Darwin/macOS:

$ which bash
/opt/homebrew/bin/bash

Rename disassemle to disassemble in the same commit (typo fix).

Adapt the correponding message in rebuild-expected-aml.

Signed-off-by: Mohamed Mediouni <mohamed@unpredictable.fr>
Reviewed-by: Ani Sinha <anisinha@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20260210041248.14701-1-mohamed@unpredictable.fr>
master
Mohamed Mediouni 2 months ago
committed by Michael S. Tsirkin
parent
commit
4d0830ea34
  1. 4
      tests/data/acpi/disassemble-aml.sh
  2. 2
      tests/data/acpi/rebuild-expected-aml.sh

4
tests/data/acpi/disassemle-aml.sh → tests/data/acpi/disassemble-aml.sh

@ -1,4 +1,4 @@
#!/usr/bin/bash
#!/usr/bin/env bash
outdir=
while getopts "o:" arg; do
@ -7,7 +7,7 @@ while getopts "o:" arg; do
outdir=$OPTARG
;;
\? )
echo "Usage: ./tests/data/acpi/disassemle-aml.sh [-o <output-directory>]"
echo "Usage: ./tests/data/acpi/disassemble-aml.sh [-o <output-directory>]"
exit 1
;;

2
tests/data/acpi/rebuild-expected-aml.sh

@ -57,7 +57,7 @@ old_allowed_dif=`grep -v -e 'List of comma-separated changed AML files to ignore
echo '/* List of comma-separated changed AML files to ignore */' > ${SRC_PATH}/tests/qtest/bios-tables-test-allowed-diff.h
echo "The files were rebuilt and can be added to git."
echo "You can use ${SRC_PATH}/tests/data/acpi/disassemle-aml.sh to disassemble them to ASL."
echo "You can use ${SRC_PATH}/tests/data/acpi/disassemble-aml.sh to disassemble them to ASL."
if [ -z "$old_allowed_dif" ]; then
echo "Note! Please do not commit expected files with source changes"

Loading…
Cancel
Save