Combine flutter_tool_startup devicelab tests (#125226)

`flutter_tool_startup__windows/linux/macos` were identical. Use the same task for all three.
This commit is contained in:
Jenn Magder 2023-04-21 15:33:07 -07:00 committed by GitHub
parent a2c247117b
commit baafa1991d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 23 deletions

View File

@ -4842,7 +4842,7 @@ targets:
properties: properties:
tags: > tags: >
["devicelab", "hostonly", "windows"] ["devicelab", "hostonly", "windows"]
task_name: flutter_tool_startup__windows task_name: flutter_tool_startup
- name: Linux flutter_tool_startup__linux - name: Linux flutter_tool_startup__linux
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
@ -4851,14 +4851,14 @@ targets:
properties: properties:
tags: > tags: >
["devicelab", "hostonly", "linux"] ["devicelab", "hostonly", "linux"]
task_name: flutter_tool_startup__linux task_name: flutter_tool_startup
- name: Mac_benchmark flutter_tool_startup__macos - name: Mac_benchmark flutter_tool_startup__macos
presubmit: false presubmit: false
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
timeout: 60 timeout: 60
properties: properties:
task_name: flutter_tool_startup__macos task_name: flutter_tool_startup
- name: Linux flutter_packaging - name: Linux flutter_packaging
recipe: packaging/packaging recipe: packaging/packaging

View File

@ -1,10 +0,0 @@
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/tasks/flutter_tool_startup.dart';
Future<void> main() async {
await task(flutterToolStartupBenchmarkTask);
}

View File

@ -1,10 +0,0 @@
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/tasks/flutter_tool_startup.dart';
Future<void> main() async {
await task(flutterToolStartupBenchmarkTask);
}