]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tests/tcg: fix up test-i386-fprem.ref generation
authorAlex Bennée <alex.bennee@linaro.org>
Fri, 5 Jul 2019 10:48:02 +0000 (11:48 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Wed, 10 Jul 2019 09:31:20 +0000 (10:31 +0100)
We never shipped the reference data in the source tree because it's
quite big (64M). As a result the only option is to generate it
locally. Although we have a rule to generate the reference file we
missed the dependency and location changes, probably because it's only
run for SLOW test runs.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
tests/tcg/i386/Makefile.target

index b4033ba3d1bcce9451852ef990ee7782c94217d7..d0eb7023e52eb84ba4adb5827a615925337b35cf 100644 (file)
@@ -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")