[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v1 2/5] tests/tcg: fix up test-i386-fprem.ref ge
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [Qemu-devel] [PATCH v1 2/5] tests/tcg: fix up test-i386-fprem.ref generation |
Date: |
Wed, 10 Jul 2019 12:41:20 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.0 |
On 7/5/19 6:04 PM, Alex Bennée wrote:
> We never shipped the reference data in the source tree because it was
> quite big (64M). As a result the only option is to generate it
Can we fetch it (with hash verification) or store it compressed?
$ du -ch pc-bios/edk2-*bz2
1.2M pc-bios/edk2-aarch64-code.fd.bz2
1.2M pc-bios/edk2-arm-code.fd.bz2
4.0K pc-bios/edk2-arm-vars.fd.bz2
1.7M pc-bios/edk2-i386-code.fd.bz2
1.9M pc-bios/edk2-i386-secure-code.fd.bz2
4.0K pc-bios/edk2-i386-vars.fd.bz2
1.7M pc-bios/edk2-x86_64-code.fd.bz2
1.9M pc-bios/edk2-x86_64-secure-code.fd.bz2
9.3M total
> locally. Although we have a rule to generate the reference file we
> missed the dependency and location changes, probably because it is
> only run for SLOW test runs.
>
> The test still fails with mostly incorrect flags and different than
> expected NaNs. I'll leave that for the x86 experts to look at.
>
> Signed-off-by: Alex Bennée <address@hidden>
> Cc: Paolo Bonzini <address@hidden>
> Cc: Richard Henderson <address@hidden>
> Cc: Eduardo Habkost <address@hidden>
> Cc: Jan Bobek <address@hidden>
> ---
> tests/tcg/i386/Makefile.target | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tests/tcg/i386/Makefile.target b/tests/tcg/i386/Makefile.target
> index b4033ba3d1..d0eb7023e5 100644
> --- a/tests/tcg/i386/Makefile.target
> +++ b/tests/tcg/i386/Makefile.target
> @@ -35,9 +35,9 @@ test-i386-fprem.ref: test-i386-fprem
> $(call quiet-command, ./$< > $@,"GENREF","generating $@")
>
> run-test-i386-fprem: TIMEOUT=60
> -run-test-i386-fprem: test-i386-fprem
> +run-test-i386-fprem: test-i386-fprem test-i386-fprem.ref
> $(call run-test,test-i386-fprem, $(QEMU) $<,"$< on $(TARGET_NAME)")
> - $(call diff-out,test-i386-fprem, $(I386_SRC)/$<.ref)
> + $(call diff-out,test-i386-fprem, test-i386-fprem.ref)
> else
> run-test-i386-fprem: test-i386-fprem
> $(call skip-test, $<, "SLOW")
>
- Re: [Qemu-devel] [PATCH v1 5/5] gdbstub: revert to previous set_reg behaviour, (continued)
[Qemu-devel] [PATCH v1 1/5] target/arm/vfp_helper: Call set_fpscr_to_host before updating FPSCR reg, Alex Bennée, 2019/07/05
[Qemu-devel] [PATCH v1 4/5] gdbstub: add some notes to the header comment, Alex Bennée, 2019/07/05
[Qemu-devel] [PATCH v1 2/5] tests/tcg: fix up test-i386-fprem.ref generation, Alex Bennée, 2019/07/05