diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2020-09-29 07:07:45 -0400 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2020-09-29 07:10:37 -0400 |
| commit | f142e4ede72853aaa7d306bc79b099caed45769b (patch) | |
| tree | 326b5b572a507d906b9530687be8713f966aad29 /tests/data/acpi/disassemle-aml.py | |
| parent | 213057383c9f73a17cfe635b204d88e11f918df1 (diff) | |
| download | focaccia-qemu-f142e4ede72853aaa7d306bc79b099caed45769b.tar.gz focaccia-qemu-f142e4ede72853aaa7d306bc79b099caed45769b.zip | |
tests/acpi: drop unnecessary files
The last pull added a ton of useless files by mistake.
Drop them all.
Fixes: 0ed93f4c05896 ("update golden master DSDT binary table blobs for q35")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'tests/data/acpi/disassemle-aml.py')
| -rw-r--r-- | tests/data/acpi/disassemle-aml.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/data/acpi/disassemle-aml.py b/tests/data/acpi/disassemle-aml.py deleted file mode 100644 index 0398fada63..0000000000 --- a/tests/data/acpi/disassemle-aml.py +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/python - -import os, re -root = "tests/data/acpi" -for machine in os.listdir(root): - machine_root = os.path.join(root, machine) - if not os.path.isdir(machine_root): - continue - files = os.listdir(machine_root): - for file in files: - if file.endswith(".dsl"): - continue - extension_prefix = "^[^.]*\." - if re.match(extension_prefix, file): - variant = re.sub(extension_prefix, "", file) - - -for dirpath, dirnames, filenames in os.walk("tests/data/acpi"): - for file in files: - if file.endswith(".txt"): - print(os.path.join(root, file)) |