diff options
author | 2024-07-19 11:54:08 +0200 | |
---|---|---|
committer | 2024-07-22 13:54:23 +0200 | |
commit | 3b067b701d08ae292c4757caec81fc17dce69b11 (patch) | |
tree | 04528bdaee07f0c58c1e2de0aca466a7f776dd2c /tests | |
parent | tests/avocado: Move LinuxTest related code into a separate file (diff) | |
download | qemu-3b067b701d08ae292c4757caec81fc17dce69b11.tar.xz qemu-3b067b701d08ae292c4757caec81fc17dce69b11.zip |
tests/avocado/mem-addr-space-check: Remove unused "import signal"
The "signal" module is not used here, so we can remove this import
statement.
Message-ID: <20240719095408.33298-1-thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/avocado/mem-addr-space-check.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/avocado/mem-addr-space-check.py b/tests/avocado/mem-addr-space-check.py index 85541ea051..d3974599f4 100644 --- a/tests/avocado/mem-addr-space-check.py +++ b/tests/avocado/mem-addr-space-check.py @@ -9,7 +9,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later from avocado_qemu import QemuSystemTest -import signal import time class MemAddrCheck(QemuSystemTest): |