Mark file system event tests as slow.

Restore timeout for windows-arm64, which did not get faster.

Change-Id: I9f032c25fc69454929348f0589d35200a4728142
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/364625
Commit-Queue: Ryan Macnak <rmacnak@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
This commit is contained in:
Ryan Macnak 2024-04-26 23:46:17 +00:00 committed by Commit Queue
parent 6357371c0a
commit 1ff4f72ebc
2 changed files with 6 additions and 3 deletions

View file

@ -356,8 +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 ((arch == Architecture.x64 && system == System.mac) ||
(arch == Architecture.arm64 && system == System.win)) {
multiplier *= 2; // Slower machines.
}
if (mode.isDebug) {

View file

@ -2,8 +2,10 @@
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
LibTest/io/FileSystemModifyEvent/*: Pass, Slow
LibTest/io/FileSystemMoveEvent/*: Pass, Slow
[ $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