From 425d6aba9994277da5edbf2cbd97502a107a794a Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Tue, 1 Mar 2022 09:59:00 +0100 Subject: [PATCH] tests/Makefile.include: Let "make clean" remove the TCG tests, too MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "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 Reviewed-by: Richard Henderson Message-Id: <20220301085900.1443232-1-thuth@redhat.com> Signed-off-by: Alex Bennée --- tests/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.include b/tests/Makefile.include index b89018cdcc..05c534ea56 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -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