diff mbox

[1/2] tests-ppc64: add to cleanup rule

Message ID 1392004376-17016-2-git-send-email-aik@ozlabs.ru
State New
Headers show

Commit Message

Alexey Kardashevskiy Feb. 10, 2014, 3:52 a.m. UTC
This adds $(check-qtest-ppc64-y) to the check-clean rule.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
---
 tests/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Andreas Färber Feb. 10, 2014, 8:32 p.m. UTC | #1
Am 10.02.2014 04:52, schrieb Alexey Kardashevskiy:
> This adds $(check-qtest-ppc64-y) to the check-clean rule.
> 
> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>

Nice catch!

> ---
>  tests/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/Makefile b/tests/Makefile
> index 0aaf657..3a00ea7 100644
> --- a/tests/Makefile
> +++ b/tests/Makefile
> @@ -319,7 +319,7 @@ check-block: $(patsubst %,check-%, $(check-block-y))
>  check: check-qapi-schema check-unit check-qtest
>  check-clean:
>  	$(MAKE) -C tests/tcg clean
> -	rm -rf $(check-unit-y) $(check-qtest-i386-y) $(check-qtest-x86_64-y) $(check-qtest-sparc64-y) $(check-qtest-sparc-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
> +	rm -rf $(check-unit-y) $(check-qtest-i386-y) $(check-qtest-x86_64-y) $(check-qtest-sparc64-y) $(check-qtest-sparc-y) $(check-qtest-ppc64-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
>  
>  clean: check-clean
>  

Can we use a $(foreach ...) for $(check-qtest-*-y) like Peter did for
adding qom-test?

http://patchwork.ozlabs.org/patch/313650/

Regards,
Andreas
diff mbox

Patch

diff --git a/tests/Makefile b/tests/Makefile
index 0aaf657..3a00ea7 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -319,7 +319,7 @@  check-block: $(patsubst %,check-%, $(check-block-y))
 check: check-qapi-schema check-unit check-qtest
 check-clean:
 	$(MAKE) -C tests/tcg clean
-	rm -rf $(check-unit-y) $(check-qtest-i386-y) $(check-qtest-x86_64-y) $(check-qtest-sparc64-y) $(check-qtest-sparc-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
+	rm -rf $(check-unit-y) $(check-qtest-i386-y) $(check-qtest-x86_64-y) $(check-qtest-sparc64-y) $(check-qtest-sparc-y) $(check-qtest-ppc64-y) tests/*.o $(QEMU_IOTESTS_HELPERS-y)
 
 clean: check-clean