[v2,1/4] CI: Remove cleanup before nocross build

Message ID 20240816072526.65382-2-amikan@ilbers.de
State Accepted, archived
Headers show
Series Speedup testsuites | expand

Commit Message

Anton Mikanovich Aug. 16, 2024, 7:25 a.m. UTC
Long time ago Isar was failing if running QEMU building right after
cross build test case. To mask that failure cleanup between nocross
and cross test cases was introduced. There is no more such an issue,
so we can safely remove this hack from the testsuite.

If nocross building will not work after switching from cross mode it
should be considered as a bug.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/citest.py | 2 --
 1 file changed, 2 deletions(-)

Patch

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 18d3af97..3f98fb3b 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -230,8 +230,6 @@  class NoCrossTest(CIBaseTest):
         ]
 
         self.init()
-        # Cleanup after cross build
-        self.move_in_build_dir('tmp', 'tmp_before_nocross')
         self.perform_build_test(targets, cross=False, debsrc_cache=True)
 
     def test_nocross_rpi(self):