mirror of https://github.com/xemu-project/xemu.git
tests/tcg: remove quoting for info output
This avoids ugly multi-line wrapping for the test on non V=1 builds. Acked-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20230829161528.2707696-4-alex.bennee@linaro.org>
This commit is contained in:
parent
6445c2cace
commit
bb16cb4519
|
@ -14,7 +14,7 @@ AARCH64_TESTS=fcvt pcalign-a64 lse2-fault
|
||||||
fcvt: LDFLAGS+=-lm
|
fcvt: LDFLAGS+=-lm
|
||||||
|
|
||||||
run-fcvt: fcvt
|
run-fcvt: fcvt
|
||||||
$(call run-test,$<,$(QEMU) $<, "$< on $(TARGET_NAME)")
|
$(call run-test,$<,$(QEMU) $<)
|
||||||
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
$(call diff-out,$<,$(AARCH64_SRC)/fcvt.ref)
|
||||||
|
|
||||||
config-cc.mak: Makefile
|
config-cc.mak: Makefile
|
||||||
|
|
|
@ -37,10 +37,10 @@ run-gdbstub-untimely-packet: hello
|
||||||
--qemu $(QEMU) \
|
--qemu $(QEMU) \
|
||||||
--bin $< --qargs \
|
--bin $< --qargs \
|
||||||
"-monitor none -display none -chardev file$(COMMA)path=untimely-packet.out$(COMMA)id=output $(QEMU_OPTS)", \
|
"-monitor none -display none -chardev file$(COMMA)path=untimely-packet.out$(COMMA)id=output $(QEMU_OPTS)", \
|
||||||
"softmmu gdbstub untimely packets")
|
softmmu gdbstub untimely packets)
|
||||||
$(call quiet-command, \
|
$(call quiet-command, \
|
||||||
(! grep -Fq 'Packet instead of Ack, ignoring it' untimely-packet.gdb.err), \
|
(! grep -Fq 'Packet instead of Ack, ignoring it' untimely-packet.gdb.err), \
|
||||||
"GREP", "file untimely-packet.gdb.err")
|
"GREP", file untimely-packet.gdb.err)
|
||||||
else
|
else
|
||||||
run-gdbstub-%:
|
run-gdbstub-%:
|
||||||
$(call skip-test, "gdbstub test $*", "no guest arch support")
|
$(call skip-test, "gdbstub test $*", "no guest arch support")
|
||||||
|
|
Loading…
Reference in New Issue