@@ -136,9 +136,9 @@ Future<void> main(List<String> args) async {
136
136
if (Platform .environment.containsKey (CIRRUS_TASK_NAME )) {
137
137
printProgress ('Running task: ${Platform .environment [CIRRUS_TASK_NAME ]}' );
138
138
}
139
- final WebTestsSuite webTestsSuite = WebTestsSuite (flutterRoot, flutterTestArgs);
139
+ final WebTestsSuite webTestsSuite = WebTestsSuite (flutterTestArgs);
140
140
await selectShard (< String , ShardRunner > {
141
- 'add_to_app_life_cycle_tests' : () => addToAppLifeCycleRunner (flutterRoot) ,
141
+ 'add_to_app_life_cycle_tests' : addToAppLifeCycleRunner,
142
142
'build_tests' : _runBuildTests,
143
143
'framework_coverage' : frameworkCoverageRunner,
144
144
'framework_tests' : _runFrameworkTests,
@@ -156,14 +156,14 @@ Future<void> main(List<String> args) async {
156
156
'web_skwasm_tests' : webTestsSuite.runWebSkwasmUnitTests,
157
157
// All web integration tests
158
158
'web_long_running_tests' : webTestsSuite.webLongRunningTestsRunner,
159
- 'flutter_plugins' : () => flutterPackagesRunner (flutterRoot) ,
159
+ 'flutter_plugins' : flutterPackagesRunner,
160
160
'skp_generator' : skpGeneratorTestsRunner,
161
- 'realm_checker' : () => realmCheckerTestRunner (flutterRoot) ,
162
- 'customer_testing' : () => customerTestingRunner (flutterRoot) ,
163
- 'analyze' : () => analyzeRunner (flutterRoot) ,
164
- 'fuchsia_precache' : () => fuchsiaPrecacheRunner (flutterRoot) ,
165
- 'docs' : () => docsRunner (flutterRoot) ,
166
- 'verify_binaries_codesigned' : () => verifyCodesignedTestRunner (flutterRoot) ,
161
+ 'realm_checker' : realmCheckerTestRunner,
162
+ 'customer_testing' : customerTestingRunner,
163
+ 'analyze' : analyzeRunner,
164
+ 'fuchsia_precache' : fuchsiaPrecacheRunner,
165
+ 'docs' : docsRunner,
166
+ 'verify_binaries_codesigned' : verifyCodesignedTestRunner,
167
167
kTestHarnessShardName: _runTestHarnessTests, // Used for testing this script; also run as part of SHARD=framework_tests, SUBSHARD=misc.
168
168
});
169
169
} catch (error, stackTrace) {
0 commit comments