From 82144f037b17569a8c19d6af3a75ae61bb9b334f Mon Sep 17 00:00:00 2001 From: Alexander Markov Date: Thu, 16 Oct 2025 18:15:14 -0700 Subject: [PATCH] [tests] Reduce number of threads in ffi/many_listener_callbacks_test Issue: https://github.com/dart-lang/sdk/issues/61733 Change-Id: I3d6ef801f7c7f24d56b129ac4f169a7b2a2c5448 Cq-Include-Trybots: luci.dart.try:vm-ffi-mac-debug-simarm64_arm64-try,vm-ffi-mac-release-simarm64_arm64-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/455464 Commit-Queue: Liam Appelbe Reviewed-by: Liam Appelbe Auto-Submit: Alexander Markov --- tests/ffi/many_listener_callbacks_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ffi/many_listener_callbacks_test.dart b/tests/ffi/many_listener_callbacks_test.dart index 3e73e02c7a8..329484271d9 100644 --- a/tests/ffi/many_listener_callbacks_test.dart +++ b/tests/ffi/many_listener_callbacks_test.dart @@ -54,7 +54,7 @@ void main() async { await firstIsRunning.future; - for (var i = 0; i < 30; ++i) { + for (var i = 0; i < 10; ++i) { spawn((int n) {}); }