From b4ae4b00aef7ff490b429676ae77e4c6d1d6b54b Mon Sep 17 00:00:00 2001 From: Todd Volkert Date: Fri, 9 Nov 2018 17:31:17 -0800 Subject: [PATCH] Go back to `-j1` in flutter_tools tests (#24196) To see if it stops the Cirrus crashing --- dev/bots/test.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dev/bots/test.dart b/dev/bots/test.dart index 6dd8c3ae518..e55847a04a7 100644 --- a/dev/bots/test.dart +++ b/dev/bots/test.dart @@ -4,7 +4,6 @@ import 'dart:async'; import 'dart:io'; -import 'dart:math' as math; import 'package:path/path.dart' as path; @@ -230,9 +229,7 @@ Future _pubRunTest( String testPath, bool enableFlutterToolAsserts = false }) { - final List args = ['run', 'test', '-rcompact']; - final int concurrency = math.max(1, Platform.numberOfProcessors - 1); - args.add('-j$concurrency'); + final List args = ['run', 'test', '-rcompact', '-j1']; if (!hasColor) args.add('--no-color'); if (testPath != null)