tests/tcg: Increase timeout for TCI
The longest test at the moment seems to be a (slower) aarch64 host, for which test-mmap takes 64 seconds. Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
2fc6f16ca5
commit
e5b4654907
3
configure
vendored
3
configure
vendored
@ -5803,6 +5803,9 @@ fi
|
||||
if test "$optreset" = "yes" ; then
|
||||
echo "HAVE_OPTRESET=y" >> $config_host_mak
|
||||
fi
|
||||
if test "$tcg" = "enabled" -a "$tcg_interpreter" = "true" ; then
|
||||
echo "CONFIG_TCG_INTERPRETER=y" >> $config_host_mak
|
||||
fi
|
||||
if test "$fdatasync" = "yes" ; then
|
||||
echo "CONFIG_FDATASYNC=y" >> $config_host_mak
|
||||
fi
|
||||
|
@ -81,8 +81,10 @@ LDFLAGS=
|
||||
QEMU_OPTS=
|
||||
|
||||
|
||||
# If TCG debugging is enabled things are a lot slower
|
||||
ifeq ($(CONFIG_DEBUG_TCG),y)
|
||||
# If TCG debugging, or TCI is enabled things are a lot slower
|
||||
ifneq ($(CONFIG_TCG_INTERPRETER),)
|
||||
TIMEOUT=90
|
||||
else ifneq ($(CONFIG_DEBUG_TCG),)
|
||||
TIMEOUT=60
|
||||
else
|
||||
TIMEOUT=15
|
||||
|
Loading…
Reference in New Issue
Block a user