]> git.dujemihanovic.xyz Git - u-boot.git/commit
test: Find leftovers after clean/mrproper
authorTobias Deiminger <tdmg@linutronix.de>
Mon, 19 Jun 2023 22:41:07 +0000 (00:41 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 7 Jul 2023 20:25:56 +0000 (16:25 -0400)
commit42c0e5bb054da1437fe847bfd4063768c08d39ca
tree84cbc8c4f5841d348f478ab74565a2ae468e537f
parent57fdec65c5d9d6e16ed273243178eb3dc95c8a88
test: Find leftovers after clean/mrproper

Docs describe 'make clean' to delete most generated files, 'make
mrproper' to delete current configuration and all generated files. This
test tries to assert it.

Idea is to search remaining files by patterns in copies of the initial
out-of-source build, which has two advantages:
- looking in an out-of-source build dir allows to tell generated source
  code from committed source code
- copying is fast (compared to rebuilding each time) which allows to do
  a "world clean"

Signed-off-by: Tobias Deiminger <tdmg@linutronix.de>
test/py/tests/test_cleanup_build.py [new file with mode: 0644]