All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] tests/Makefile: Show check-report.tap in check-help
@ 2019-12-11 20:44 Wainer dos Santos Moschetta
  2019-12-11 20:44 ` [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown " Wainer dos Santos Moschetta
  0 siblings, 1 reply; 4+ messages in thread
From: Wainer dos Santos Moschetta @ 2019-12-11 20:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini

Simple fix to commit 9df43317b82 that didn't adjust check-help.

Wainer dos Santos Moschetta (1):
  tests/Makefile: Fix check-report.* targets shown in check-help

 tests/Makefile.include | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown in check-help
  2019-12-11 20:44 [PATCH 0/1] tests/Makefile: Show check-report.tap in check-help Wainer dos Santos Moschetta
@ 2019-12-11 20:44 ` Wainer dos Santos Moschetta
  2019-12-12  0:31   ` Paolo Bonzini
  2019-12-12  7:13   ` Thomas Huth
  0 siblings, 2 replies; 4+ messages in thread
From: Wainer dos Santos Moschetta @ 2019-12-11 20:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini

The check-report.html and check-report.xml targets were replaced
with check-report.tap in commit 9df43317b82 but the check-help
text was not updated so it still lists check-report.html.

Fixes: 9df43317b82
Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
---
 tests/Makefile.include | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/Makefile.include b/tests/Makefile.include
index 8566f5f119..680bd8a669 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -16,12 +16,10 @@ check-help:
 	@echo " $(MAKE) check-softfloat      Run FPU emulation tests"
 	@echo " $(MAKE) check-acceptance     Run all acceptance (functional) tests"
 	@echo
-	@echo " $(MAKE) check-report.html    Generates an HTML test report"
+	@echo " $(MAKE) check-report.tap     Generates an aggregated TAP test report"
 	@echo " $(MAKE) check-venv           Creates a Python venv for tests"
 	@echo " $(MAKE) check-clean          Clean the tests and related data"
 	@echo
-	@echo "Please note that HTML reports do not regenerate if the unit tests"
-	@echo "have not changed."
 	@echo
 	@echo "The variable SPEED can be set to control the gtester speed setting."
 	@echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be"
-- 
2.21.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown in check-help
  2019-12-11 20:44 ` [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown " Wainer dos Santos Moschetta
@ 2019-12-12  0:31   ` Paolo Bonzini
  2019-12-12  7:13   ` Thomas Huth
  1 sibling, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2019-12-12  0:31 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, qemu-devel, qemu-trivial

On 11/12/19 21:44, Wainer dos Santos Moschetta wrote:
> The check-report.html and check-report.xml targets were replaced
> with check-report.tap in commit 9df43317b82 but the check-help
> text was not updated so it still lists check-report.html.
> 
> Fixes: 9df43317b82
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
>  tests/Makefile.include | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/tests/Makefile.include b/tests/Makefile.include
> index 8566f5f119..680bd8a669 100644
> --- a/tests/Makefile.include
> +++ b/tests/Makefile.include
> @@ -16,12 +16,10 @@ check-help:
>  	@echo " $(MAKE) check-softfloat      Run FPU emulation tests"
>  	@echo " $(MAKE) check-acceptance     Run all acceptance (functional) tests"
>  	@echo
> -	@echo " $(MAKE) check-report.html    Generates an HTML test report"
> +	@echo " $(MAKE) check-report.tap     Generates an aggregated TAP test report"
>  	@echo " $(MAKE) check-venv           Creates a Python venv for tests"
>  	@echo " $(MAKE) check-clean          Clean the tests and related data"
>  	@echo
> -	@echo "Please note that HTML reports do not regenerate if the unit tests"
> -	@echo "have not changed."
>  	@echo
>  	@echo "The variable SPEED can be set to control the gtester speed setting."
>  	@echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be"
> 

Cc: qemu-trivial@nongnu.org



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown in check-help
  2019-12-11 20:44 ` [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown " Wainer dos Santos Moschetta
  2019-12-12  0:31   ` Paolo Bonzini
@ 2019-12-12  7:13   ` Thomas Huth
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2019-12-12  7:13 UTC (permalink / raw)
  To: Wainer dos Santos Moschetta, qemu-devel; +Cc: QEMU Trivial, pbonzini

On 11/12/2019 21.44, Wainer dos Santos Moschetta wrote:
> The check-report.html and check-report.xml targets were replaced
> with check-report.tap in commit 9df43317b82 but the check-help
> text was not updated so it still lists check-report.html.
> 
> Fixes: 9df43317b82
> Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
> ---
>  tests/Makefile.include | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
> 
> diff --git a/tests/Makefile.include b/tests/Makefile.include
> index 8566f5f119..680bd8a669 100644
> --- a/tests/Makefile.include
> +++ b/tests/Makefile.include
> @@ -16,12 +16,10 @@ check-help:
>  	@echo " $(MAKE) check-softfloat      Run FPU emulation tests"
>  	@echo " $(MAKE) check-acceptance     Run all acceptance (functional) tests"
>  	@echo
> -	@echo " $(MAKE) check-report.html    Generates an HTML test report"
> +	@echo " $(MAKE) check-report.tap     Generates an aggregated TAP test report"
>  	@echo " $(MAKE) check-venv           Creates a Python venv for tests"
>  	@echo " $(MAKE) check-clean          Clean the tests and related data"
>  	@echo
> -	@echo "Please note that HTML reports do not regenerate if the unit tests"
> -	@echo "have not changed."
>  	@echo
>  	@echo "The variable SPEED can be set to control the gtester speed setting."
>  	@echo "Default options are -k and (for $(MAKE) V=1) --verbose; they can be"
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-12-12  7:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-11 20:44 [PATCH 0/1] tests/Makefile: Show check-report.tap in check-help Wainer dos Santos Moschetta
2019-12-11 20:44 ` [PATCH 1/1] tests/Makefile: Fix check-report.* targets shown " Wainer dos Santos Moschetta
2019-12-12  0:31   ` Paolo Bonzini
2019-12-12  7:13   ` Thomas Huth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.