diff mbox series

tests/Makefile.include: Let "make clean" remove the TCG tests, too

Message ID 20220301085900.1443232-1-thuth@redhat.com (mailing list archive)
State New, archived
Headers show
Series tests/Makefile.include: Let "make clean" remove the TCG tests, too | expand

Commit Message

Thomas Huth March 1, 2022, 8:59 a.m. UTC
"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>
---
 tests/Makefile.include | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Richard Henderson March 1, 2022, 6:11 p.m. UTC | #1
On 2/28/22 22:59, Thomas Huth wrote:
> "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>
> ---
>   tests/Makefile.include | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~
Alex Bennée March 3, 2022, 12:35 p.m. UTC | #2
Thomas Huth <thuth@redhat.com> writes:

> "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.

Queued to for-7.0/misc-bits, thanks.
diff mbox series

Patch

diff --git a/tests/Makefile.include b/tests/Makefile.include
index e7153c8e91..7a932caf91 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -162,6 +162,6 @@  check-build: run-ninja
 check-clean:
 	rm -rf $(TESTS_VENV_DIR) $(TESTS_RESULTS_DIR)
 
-clean: check-clean
+clean: check-clean clean-tcg
 
 endif