tests/Makefile.include: Let "make clean" remove the TCG tests, too
authorThomas Huth <thuth@redhat.com>
Tue, 1 Mar 2022 08:59:00 +0000 (09:59 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Wed, 23 Mar 2022 10:25:22 +0000 (10:25 +0000)
"make clean" should clear all binaries that have been built, but so
far it left the TCG tests still in place. Let's make sure that they
are now removed, too.

Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20220301085900.1443232-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
tests/Makefile.include

index b89018cdcc6a0410e8039edc489b7bb041c2444e..05c534ea56f86aafa06f7ea30e49728e0e6fb0a2 100644 (file)
@@ -155,6 +155,6 @@ check-build: run-ninja
 check-clean:
        rm -rf $(TESTS_VENV_DIR) $(TESTS_RESULTS_DIR)
 
-clean: check-clean
+clean: check-clean clean-tcg
 
 endif