Skip to content

Commit 48cc23e

Browse files
mkustermannCommit Queue
authored andcommitted
[gardening] Mark vm/dart/regress47472_test on TSAN
It seemingly flakily times out om mac under TSAN Change-Id: I2e030756bfb353b8e2044c4ad676c50d2ff9f003 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/449122 Reviewed-by: Slava Egorov <[email protected]> Commit-Queue: Martin Kustermann <[email protected]>
1 parent 96d7143 commit 48cc23e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

runtime/tests/vm/vm.status

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ dart/gc/fragmentation*: Skip # Uses too much memory with TSAN overhead and kills
165165
dart/gc/out_of_memory*: Skip # Uses too much memory with TSAN overhead and kills bot
166166
dart/gc/scavenger_abort_test: Skip # Uses too much memory with TSAN overhead and kills bot
167167
dart/hash_map_probes_limit_test: SkipSlow # Test includes large program compilation.
168+
dart/regress47472_test: Pass, Slow # Slow due to throwing 1 million exceptions.
168169
dart/regress_40753_test: Skip # This test crashes on the bot, but not locally, and infrastructure repeatedly fails to locate its coredump.
169170
dart/trigger_gc_in_native_test: Skip # This test crashes on the bot, but not locally, and infrastructure repeatedly fails to locate its coredump.
170171
dart/unobfuscated_static_symbols_test: Pass, Slow # Test includes creating several snapshots in both ELF and assembly modes.

tests/standalone/io/process_working_directory_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ProcessWorkingDirectoryTest {
3232
], workingDirectory: directory.path)
3333
.then((process) {
3434
process.exitCode.then((int exitCode) {
35-
Expect.equals(exitCode, 99);
35+
Expect.equals(99, exitCode);
3636
directory.deleteSync();
3737
});
3838
process.stdout.listen((_) {});

0 commit comments

Comments
 (0)