diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2025-01-08 12:10:43 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-01-10 11:18:32 +0000 |
commit | f2e116184e723e23f7e0c3099db57e3c53cb3a7e (patch) | |
tree | 6a998152e57774bfa4c3e4a579c66095c1b9aa36 | |
parent | 3b9ec25e48310124bed4b5dd8c4f89f8928015d2 (diff) | |
download | qemu-f2e116184e723e23f7e0c3099db57e3c53cb3a7e.zip qemu-f2e116184e723e23f7e0c3099db57e3c53cb3a7e.tar.gz qemu-f2e116184e723e23f7e0c3099db57e3c53cb3a7e.tar.bz2 |
tests/functional: remove unused kernel_command_line
The Alpine test boots from the CDROM so we don't --append a command
line. Drop the unused code.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20250108121054.1126164-22-alex.bennee@linaro.org>
-rwxr-xr-x | tests/functional/test_aarch64_virt.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/functional/test_aarch64_virt.py b/tests/functional/test_aarch64_virt.py index 2d9995a..b3d3b0e 100755 --- a/tests/functional/test_aarch64_virt.py +++ b/tests/functional/test_aarch64_virt.py @@ -41,8 +41,6 @@ class Aarch64VirtMachine(QemuSystemTest): self.set_machine('virt') self.vm.set_console() - kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE + - 'console=ttyAMA0') self.require_accelerator("tcg") self.vm.add_args("-accel", "tcg") |