[test_runner] Reduce timeouts.
We've roughly doubled bot speeds; half timeouts to provide pressure against this simply getting filled with slower tests. Change-Id: I812da7adc6c08e6d484732c2558e0d3f63b2694a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/364385 Reviewed-by: Alexander Aprelev <aam@google.com> Reviewed-by: Siva Annamalai <asiva@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
committed by
Commit Queue
parent
f68a70d55a
commit
f02007839d
@@ -245,7 +245,7 @@ class TestConfiguration {
|
||||
arch: architecture,
|
||||
system: system);
|
||||
|
||||
_timeout = 60 * compilerMultiplier * runtimeMultiplier;
|
||||
_timeout = 30 * compilerMultiplier * runtimeMultiplier;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -356,6 +356,9 @@ class DartVmRuntimeConfiguration extends RuntimeConfiguration {
|
||||
if (arch == Architecture.ia32) {
|
||||
multiplier *= 2;
|
||||
}
|
||||
if (arch == Architecture.x64 && system == System.mac) {
|
||||
multiplier *= 2; // Older, slower machines.
|
||||
}
|
||||
|
||||
if (mode.isDebug) {
|
||||
multiplier *= 2;
|
||||
|
||||
@@ -13,6 +13,7 @@ cc/IsolateReload_PendingUnqualifiedCall_InstanceToStatic: Fail # Issue 32981
|
||||
cc/IsolateReload_PendingUnqualifiedCall_StaticToInstance: Fail # Issue 32981
|
||||
cc/TTS_STC_ManyAsserts: Pass, Slow # Generates 10k classes that are put into an STC via assert checks.
|
||||
dart/analyze_snapshot_binary_test: Pass, Slow # Runs various subprocesses for testing AOT.
|
||||
dart/async_igoto_threshold_flag_test: Pass, Slow
|
||||
dart/boxmint_test: Pass, Slow # Uses slow path
|
||||
dart/byte_array_optimized_test: Pass, Slow
|
||||
dart/byte_array_test: Pass, Slow # Uses --opt-counter-threshold=10
|
||||
@@ -30,6 +31,7 @@ dart/print_object_layout_test: Pass, Slow # Spawns several subprocesses
|
||||
dart/regress32619_test: Pass, Slow
|
||||
dart/slow_path_shared_stub_test: Pass, Slow # Uses --shared-slow-path-triggers-gc flag.
|
||||
dart/snapshot_version_test: Skip # This test is a Dart1 test (script snapshot)
|
||||
dart/spawn_uri_aot_test: Pass, Slow # Runs various subprocesses for testing AOT.
|
||||
dart/stack_overflow_shared_test: Pass, Slow # Uses --shared-slow-path-triggers-gc flag.
|
||||
|
||||
[ $arch == ia32 ]
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
# BSD-style license that can be found in the LICENSE file.
|
||||
|
||||
[ $system == windows ]
|
||||
LibTest/io/FileSystemModifyEvent/contentChanged_A01_t01: Pass, Slow
|
||||
LibTest/io/ProcessResult/exitCode_A01_t02: Skip # Issue 32138
|
||||
LibTest/io/Stdin/readByteSync_A01_t01: Skip # Issue 32138
|
||||
LibTest/io/Stdin/readByteSync_A01_t02: Skip # Issue 32138
|
||||
|
||||
Reference in New Issue
Block a user