diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2024-12-17 15:59:36 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-12-17 19:39:53 +0100 |
commit | 7788cc7c5a2395707082952bebfcdae1e2be8ca1 (patch) | |
tree | bdd9467b0955b0ff9c08272aea10d7946f266dff | |
parent | beaf88c895a5eda649777757c80ab4171de777ff (diff) | |
download | qemu-7788cc7c5a2395707082952bebfcdae1e2be8ca1.zip qemu-7788cc7c5a2395707082952bebfcdae1e2be8ca1.tar.gz qemu-7788cc7c5a2395707082952bebfcdae1e2be8ca1.tar.bz2 |
tests/functional: remove redundant 'rmtree' call
Everything in the scratch directory is automatically purged. Calling
'rmtree' again breaks the ability to optionally preserve the scratch
directory contents.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20241217155953.3950506-16-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | tests/functional/test_sh4eb_r2d.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/functional/test_sh4eb_r2d.py b/tests/functional/test_sh4eb_r2d.py index b8dadab..c8954c9 100755 --- a/tests/functional/test_sh4eb_r2d.py +++ b/tests/functional/test_sh4eb_r2d.py @@ -4,8 +4,6 @@ # # SPDX-License-Identifier: GPL-2.0-or-later -import shutil - from qemu_test import LinuxKernelTest, Asset from qemu_test import exec_command_and_wait_for_pattern from qemu_test.utils import archive_extract @@ -26,7 +24,6 @@ class R2dEBTest(LinuxKernelTest): 'initramfs.cpio.gz'), console_index=1, wait_for='Type exit when done') exec_command_and_wait_for_pattern(self, 'exit', 'Restarting system') - shutil.rmtree(self.scratch_file('sh4eb')) if __name__ == '__main__': LinuxKernelTest.main() |