]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
test: Skip cleanup test if not built out of tree
authorTobias Deiminger <tdmg@linutronix.de>
Mon, 8 Jan 2024 21:11:00 +0000 (22:11 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 19 Jan 2024 01:23:37 +0000 (20:23 -0500)
With commit 42c0e5bb054d ("test: Find leftovers after clean/mrproper")
we assume that we are performing out of tree builds. test_clean and
test_mrproper fail if the assumption isn't met.

However there are valid scenarios where tests run with in source builds
(i.e., test.py --build-dir=.).

Automatically skip cleanup tests in such scenarios to prevent false
positives.

Signed-off-by: Tobias Deiminger <tdmg@linutronix.de>
Reviewed-by: Harald Seiler <u-boot@rahix.de>
test/py/tests/test_cleanup_build.py

index 5206ff73ec73211352489ce67ac5624eaedf4199..aca90cb110739a79296796ab033f5a855071ac49 100644 (file)
@@ -17,6 +17,11 @@ import pytest
 @pytest.fixture
 def tmp_copy_of_builddir(u_boot_config, tmp_path):
     """For each test, provide a temporary copy of the initial build directory."""
+    if os.path.realpath(u_boot_config.source_dir) == os.path.realpath(
+        u_boot_config.build_dir
+    ):
+        pytest.skip("Leftover detection requires out of tree build.")
+        return None
     shutil.copytree(
         u_boot_config.build_dir,
         tmp_path,