On 2/17/21 10:09 PM, Thomas Huth wrote: >> -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 > > Reviewed-by: Thomas Huth <th...@redhat.com> > > Does it even get slower if you enable both at the same time, TCG debugging and > TCI?
As it happens, my testing was with --enable-debug-tcg. So, unless you're doing --enable-debug (-O0) testing, we should be fine. r~