Unverified Commit 7f368f7e authored by Victoria Ashworth's avatar Victoria Ashworth Committed by GitHub

Add --no-dds to Mac_arm64_ios version of hot_mode_dev_cycle_ios__benchmark (#145335)

Attempting to debug https://github.com/flutter/flutter/issues/142305.
parent f4ee956d
...@@ -4690,7 +4690,8 @@ targets: ...@@ -4690,7 +4690,8 @@ targets:
properties: properties:
tags: > tags: >
["devicelab", "ios", "mac"] ["devicelab", "ios", "mac"]
task_name: hot_mode_dev_cycle_ios__benchmark # TODO(vashworth): Use "hot_mode_dev_cycle_ios__benchmark" once https://github.com/flutter/flutter/issues/142305 is fixed.
task_name: hot_mode_dev_cycle_ios__benchmark_no_dds
- name: Mac_x64 hot_mode_dev_cycle_ios_simulator - name: Mac_x64 hot_mode_dev_cycle_ios_simulator
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
......
...@@ -184,6 +184,8 @@ ...@@ -184,6 +184,8 @@
/dev/devicelab/bin/tasks/fullscreen_textfield_perf_ios__e2e_summary.dart @vashworth @flutter/engine /dev/devicelab/bin/tasks/fullscreen_textfield_perf_ios__e2e_summary.dart @vashworth @flutter/engine
/dev/devicelab/bin/tasks/hello_world_ios__compile.dart @jmagman @flutter/engine /dev/devicelab/bin/tasks/hello_world_ios__compile.dart @jmagman @flutter/engine
/dev/devicelab/bin/tasks/hot_mode_dev_cycle_ios__benchmark.dart @vashworth @flutter/tool /dev/devicelab/bin/tasks/hot_mode_dev_cycle_ios__benchmark.dart @vashworth @flutter/tool
# TODO(vashworth): Remove once https://github.com/flutter/flutter/issues/142305 is fixed.
/dev/devicelab/bin/tasks/hot_mode_dev_cycle_ios__benchmark_no_dds.dart @vashworth @flutter/tool
/dev/devicelab/bin/tasks/imagefiltered_transform_animation_perf_ios__timeline_summary.dart @hellohuanlin @flutter/engine /dev/devicelab/bin/tasks/imagefiltered_transform_animation_perf_ios__timeline_summary.dart @hellohuanlin @flutter/engine
/dev/devicelab/bin/tasks/integration_test_test_ios.dart @jmagman @flutter/engine /dev/devicelab/bin/tasks/integration_test_test_ios.dart @jmagman @flutter/engine
/dev/devicelab/bin/tasks/integration_ui_ios_driver.dart @vashworth @flutter/tool /dev/devicelab/bin/tasks/integration_ui_ios_driver.dart @vashworth @flutter/tool
......
// 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/devices.dart';
import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/tasks/hot_mode_tests.dart';
Future<void> main() async {
// TODO(vashworth): Remove once https://github.com/flutter/flutter/issues/142305 is fixed.
deviceOperatingSystem = DeviceOperatingSystem.ios;
await task(createHotModeTest(
additionalOptions: <String>['--no-dds'],
));
}
...@@ -23,6 +23,7 @@ const String kReplacementLine = 'fontSize: (orientation == Orientation.portrait) ...@@ -23,6 +23,7 @@ const String kReplacementLine = 'fontSize: (orientation == Orientation.portrait)
TaskFunction createHotModeTest({ TaskFunction createHotModeTest({
String? deviceIdOverride, String? deviceIdOverride,
bool checkAppRunningOnLocalDevice = false, bool checkAppRunningOnLocalDevice = false,
List<String>? additionalOptions,
}) { }) {
// This file is modified during the test and needs to be restored at the end. // This file is modified during the test and needs to be restored at the end.
final File flutterFrameworkSource = file(path.join( final File flutterFrameworkSource = file(path.join(
...@@ -47,6 +48,7 @@ TaskFunction createHotModeTest({ ...@@ -47,6 +48,7 @@ TaskFunction createHotModeTest({
'--no-publish-port', '--no-publish-port',
'--verbose', '--verbose',
'--uninstall-first', '--uninstall-first',
if (additionalOptions != null) ...additionalOptions,
]; ];
int hotReloadCount = 0; int hotReloadCount = 0;
late Map<String, dynamic> smallReloadData; late Map<String, dynamic> smallReloadData;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment