From 03de61664e1dfbe8f660aab4480cc5d6aa417dc0 Mon Sep 17 00:00:00 2001 From: keyonghan <54558023+keyonghan@users.noreply.github.com> Date: Thu, 22 Jul 2021 13:31:05 -0700 Subject: [PATCH] Update codegen_integration_test name & ownership (#86889) --- TESTOWNERS | 4 ++++ ...ion_linux.dart => codegen_integration.dart} | 0 .../bin/tasks/codegen_integration_win.dart | 18 ------------------ 3 files changed, 4 insertions(+), 18 deletions(-) rename dev/devicelab/bin/tasks/{codegen_integration_linux.dart => codegen_integration.dart} (100%) delete mode 100644 dev/devicelab/bin/tasks/codegen_integration_win.dart diff --git a/TESTOWNERS b/TESTOWNERS index e51dab82276..08b45e4788c 100644 --- a/TESTOWNERS +++ b/TESTOWNERS @@ -18,6 +18,7 @@ /dev/devicelab/bin/tasks/animated_placeholder_perf__e2e_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/backdrop_filter_perf__e2e_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/basic_material_app_android__compile.dart @zanderso @flutter/tool +/dev/devicelab/bin/tasks/codegen_integration.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/color_filter_and_fade_perf__e2e_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/complex_layout_android__compile.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/complex_layout_android__scroll_smoothness.dart @zanderso @flutter/engine @@ -43,6 +44,7 @@ /dev/devicelab/bin/tasks/flutter_gallery_v2_web_compile_test.dart @ferhatb @flutter/web /dev/devicelab/bin/tasks/flutter_test_performance.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/frame_policy_delay_test_android.dart @zanderso @flutter/engine +/dev/devicelab/bin/tasks/gradle_java8_compile_test.dart @blasten @flutter/tool /dev/devicelab/bin/tasks/hot_mode_dev_cycle_linux__benchmark.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/image_list_jit_reported_duration.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/image_list_reported_duration.dart @zanderso @flutter/engine @@ -53,6 +55,7 @@ /dev/devicelab/bin/tasks/picture_cache_perf__e2e_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/platform_channels_benchmarks.dart @gaaclarke @flutter/engine /dev/devicelab/bin/tasks/platform_views_scroll_perf__timeline_summary.dart @zanderso @flutter/engine +/dev/devicelab/bin/tasks/plugin_dependencies_test.dart @jmagman @flutter/tool /dev/devicelab/bin/tasks/routing_test.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/textfield_perf__e2e_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/web_size__compile_test.dart @ferhatb @flutter/web @@ -113,6 +116,7 @@ /dev/devicelab/bin/tasks/backdrop_filter_perf_ios__timeline_summary.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/basic_material_app_ios__compile.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/channels_integration_test_ios.dart @zanderso @flutter/engine +/dev/devicelab/bin/tasks/codegen_integration_mac.dart @zanderso @flutter/tool /dev/devicelab/bin/tasks/complex_layout_ios__compile.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/complex_layout_ios__start_up.dart @zanderso @flutter/engine /dev/devicelab/bin/tasks/complex_layout_scroll_perf_ios__timeline_summary.dart @zanderso @flutter/engine diff --git a/dev/devicelab/bin/tasks/codegen_integration_linux.dart b/dev/devicelab/bin/tasks/codegen_integration.dart similarity index 100% rename from dev/devicelab/bin/tasks/codegen_integration_linux.dart rename to dev/devicelab/bin/tasks/codegen_integration.dart diff --git a/dev/devicelab/bin/tasks/codegen_integration_win.dart b/dev/devicelab/bin/tasks/codegen_integration_win.dart deleted file mode 100644 index 57eab92aeb5..00000000000 --- a/dev/devicelab/bin/tasks/codegen_integration_win.dart +++ /dev/null @@ -1,18 +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 'dart:io'; - -import 'package:flutter_devicelab/framework/devices.dart'; -import 'package:flutter_devicelab/framework/framework.dart'; -import 'package:flutter_devicelab/framework/utils.dart'; -import 'package:flutter_devicelab/tasks/integration_tests.dart'; -import 'package:path/path.dart' as path; - -final Directory codegenAppPath = dir(path.join(flutterDirectory.path, 'dev/integration_tests/codegen')); - -Future main() async { - deviceOperatingSystem = DeviceOperatingSystem.android; - await task(createCodegenerationIntegrationTest()); -}