From e5b4654907e9d96e1b215fa943e2f62e61676ed6 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Sun, 7 Feb 2021 18:15:04 -0800 Subject: tests/tcg: Increase timeout for TCI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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é Acked-by: Alex Bennée Reviewed-by: Thomas Huth Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Richard Henderson --- tests/tcg/Makefile.target | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'tests/tcg') diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target index b29fae4..63cf1b2 100644 --- a/tests/tcg/Makefile.target +++ b/tests/tcg/Makefile.target @@ -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 -- cgit v1.1