From 4cdfc63aa72090bd62b344ef510eb06d063d22ae Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Tue, 16 Jan 2024 19:17:13 +0000 Subject: [PATCH] [test] Shrink async GC stress test to avoid timeouts on the slowest bots. TEST=ci Bug: https://github.com/dart-lang/sdk/issues/54590 Change-Id: Ib444f831e966fc980848cdd6495a5d0a343d439d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/346581 Reviewed-by: Alexander Markov Commit-Queue: Ryan Macnak --- runtime/tests/vm/dart/gc/chunked_binary_trees_async_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/tests/vm/dart/gc/chunked_binary_trees_async_test.dart b/runtime/tests/vm/dart/gc/chunked_binary_trees_async_test.dart index d7b288422bf..a2eace73f67 100644 --- a/runtime/tests/vm/dart/gc/chunked_binary_trees_async_test.dart +++ b/runtime/tests/vm/dart/gc/chunked_binary_trees_async_test.dart @@ -119,7 +119,7 @@ runBottomUp(int depth) async { main() async { for (var i = 0; i < 5; i++) { - await runTopDown(10); - await runBottomUp(10); + await runTopDown(9); + await runBottomUp(9); } }