Re: [Qemu-devel] [PATCH] test: Fix make target check-report.tap

2019-06-04 Thread Philippe Mathieu-Daudé
On 6/4/19 10:28 AM, Paolo Bonzini wrote: > On 04/06/19 10:09, Philippe Mathieu-Daudé wrote: >>> check-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) >>> check-report-unit.tap >>> - $(call quiet-command,./scripts/tap-merge.py $^ > $@,"GEN","$@") >>> + $(call quiet-command

Re: [Qemu-devel] [PATCH] test: Fix make target check-report.tap

2019-06-04 Thread Paolo Bonzini
On 04/06/19 10:09, Philippe Mathieu-Daudé wrote: >> check-report.tap: $(patsubst %,check-report-qtest-%.tap, $(QTEST_TARGETS)) >> check-report-unit.tap >> -$(call quiet-command,./scripts/tap-merge.py $^ > $@,"GEN","$@") >> +$(call quiet-command, cat $^ | scripts/tap-merge.pl >$@,"GEN","$@

Re: [Qemu-devel] [PATCH] test: Fix make target check-report.tap

2019-06-04 Thread Philippe Mathieu-Daudé
On 6/4/19 10:00 AM, Markus Armbruster wrote: > Fix a fat-fingered invocation of tap-merge.pl in the recipe of target > check-report.tap. > > Fixes: 9df43317b82 "test: replace gtester with a TAP driver" > Signed-off-by: Markus Armbruster > --- > tests/Makefile.include | 2 +- > 1 file changed, 1

[Qemu-devel] [PATCH] test: Fix make target check-report.tap

2019-06-04 Thread Markus Armbruster
Fix a fat-fingered invocation of tap-merge.pl in the recipe of target check-report.tap. Fixes: 9df43317b82 "test: replace gtester with a TAP driver" Signed-off-by: Markus Armbruster --- tests/Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile.incl