[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 69/70] tests/tcg: Increase timeout for TCI
From: |
Richard Henderson |
Subject: |
[PATCH v3 69/70] tests/tcg: Increase timeout for TCI |
Date: |
Sun, 7 Feb 2021 18:37:51 -0800 |
The longest test at the moment seems to be a (slower)
aarch64 host, for which test-mmap takes 64 seconds.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
configure | 3 +++
tests/tcg/Makefile.target | 6 ++++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index a34f91171d..53d0a32bc7 100755
--- a/configure
+++ b/configure
@@ -5790,6 +5790,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
diff --git a/tests/tcg/Makefile.target b/tests/tcg/Makefile.target
index 24d75a5801..fa5813192a 100644
--- a/tests/tcg/Makefile.target
+++ b/tests/tcg/Makefile.target
@@ -77,8 +77,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
--
2.25.1
- [PATCH v3 62/70] tcg/tci: Implement goto_ptr, (continued)
- [PATCH v3 62/70] tcg/tci: Implement goto_ptr, Richard Henderson, 2021/02/07
- [PATCH v3 63/70] tcg/tci: Implement movcond, Richard Henderson, 2021/02/07
- [PATCH v3 61/70] tcg/tci: Change encoding to uint32_t units, Richard Henderson, 2021/02/07
- [PATCH v3 64/70] tcg/tci: Implement andc, orc, eqv, nand, nor, Richard Henderson, 2021/02/07
- [PATCH v3 66/70] tcg/tci: Implement clz, ctz, ctpop, Richard Henderson, 2021/02/07
- [PATCH v3 65/70] tcg/tci: Implement extract, sextract, Richard Henderson, 2021/02/07
- [PATCH v3 67/70] tcg/tci: Implement mulu2, muls2, Richard Henderson, 2021/02/07
- [PATCH v3 68/70] tcg/tci: Implement add2, sub2, Richard Henderson, 2021/02/07
- [PATCH v3 70/70] gitlab: Enable cross-i386 builds of TCI, Richard Henderson, 2021/02/07
- [PATCH v3 69/70] tests/tcg: Increase timeout for TCI,
Richard Henderson <=
- Re: [PATCH v3 00/70] TCI fixes and cleanups, no-reply, 2021/02/07