diff --git a/dev/bots/test.dart b/dev/bots/test.dart index cc5b607a58..2ac702a1d4 100644 --- a/dev/bots/test.dart +++ b/dev/bots/test.dart @@ -56,8 +56,6 @@ final String flutterTester = path.join(flutterRoot, 'bin', 'cache', 'artifacts', /// configuration) -- prefilled with the arguments passed to test.dart. final List flutterTestArgs = []; -final Map localEngineEnv = {}; - final bool useFlutterTestFormatter = Platform.environment['FLUTTER_TEST_FORMATTER'] == 'true'; @@ -107,13 +105,6 @@ Future main(List args) async { print('$clock STARTING ANALYSIS'); try { flutterTestArgs.addAll(args); - for (final String arg in args) { - if (arg.startsWith('--local-engine=')) - localEngineEnv['FLUTTER_LOCAL_ENGINE'] = arg.substring('--local-engine='.length); - if (arg.startsWith('--local-engine-src-path=')) - localEngineEnv['FLUTTER_LOCAL_ENGINE_SRC_PATH'] = arg.substring('--local-engine-src-path='.length); - } - if (Platform.environment.containsKey(CIRRUS_TASK_NAME)) print('Running task: ${Platform.environment[CIRRUS_TASK_NAME]}'); print('═' * 80); @@ -1240,7 +1231,6 @@ Future _pubRunTest(String workingDirectory, { ]; final Map pubEnvironment = { 'FLUTTER_ROOT': flutterRoot, - ...localEngineEnv }; if (Directory(pubCache).existsSync()) { pubEnvironment['PUB_CACHE'] = pubCache;