diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2020-11-30 14:39:54 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2020-11-30 14:39:54 +0000 |
commit | 637800c7bbb222a629076a5d20afda03c2dd1043 (patch) | |
tree | 098c77d6620ebc8a83502e04bf7ce383f76592b2 | |
parent | b6a8e3479ea924c424a4939d7129d744a9c7b273 (diff) | |
download | gcc-637800c7bbb222a629076a5d20afda03c2dd1043.zip gcc-637800c7bbb222a629076a5d20afda03c2dd1043.tar.gz gcc-637800c7bbb222a629076a5d20afda03c2dd1043.tar.bz2 |
libstdc++: Reduce default test timeout to 360 seconds
The current default of 10 minutes is much longer than most tests need on
common hardware. The slow tests all now have a dg-timeout-factor
directive that gives them more time to run relative to the default. The
default can also be overridden in ~/.dejagnurc or DEJAGNU=site.exp, so
it seems unnecessary to have such a large default.
This reduces the default from 10 minutes to 6 minutes, which still seems
more than enough.
libstdc++-v3/ChangeLog:
* testsuite/lib/libstdc++.exp (libstdc++_init): Reduce
default tool_timeout to 360.
-rw-r--r-- | libstdc++-v3/testsuite/lib/libstdc++.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/testsuite/lib/libstdc++.exp b/libstdc++-v3/testsuite/lib/libstdc++.exp index e000dba..35817a8 100644 --- a/libstdc++-v3/testsuite/lib/libstdc++.exp +++ b/libstdc++-v3/testsuite/lib/libstdc++.exp @@ -248,7 +248,7 @@ proc libstdc++_init { testfile } { # Set the default timeout for v3 tests. # You can override this in ~/.dejagnurc or a .exp file named by $DEJAGNU. if {![info exists tool_timeout]} { - set tool_timeout 600 + set tool_timeout 360 } # Default settings. |