mirror of https://github.com/xqemu/xqemu.git
tests/softfloat: always do quick softfloat tests
Some operations take a long time and enabling "-l 2 -r all" can take more than a day which is stretching the definition of a "slow" test. Lets default to the quick test and leave a note for those who wish to run by hand. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
0a8b05c7cb
commit
4f575c08ca
|
@ -896,11 +896,9 @@ $(FP_TEST_BIN):
|
||||||
"BUILD", "$(notdir $@)")
|
"BUILD", "$(notdir $@)")
|
||||||
|
|
||||||
# The full test suite can take a bit of time, default to a quick run
|
# The full test suite can take a bit of time, default to a quick run
|
||||||
ifeq ($(SPEED), quick)
|
# "-l 2 -r all" can take more than a day for some operations and is best
|
||||||
|
# run manually
|
||||||
FP_TL=-l 1
|
FP_TL=-l 1
|
||||||
else
|
|
||||||
FP_TL=-l 2 -r all
|
|
||||||
endif
|
|
||||||
|
|
||||||
# $1 = tests, $2 = description
|
# $1 = tests, $2 = description
|
||||||
test-softfloat = $(call quiet-command, \
|
test-softfloat = $(call quiet-command, \
|
||||||
|
|
Loading…
Reference in New Issue