Skip to content

Commit fe94267

Browse files
authored
add ios tests (flutter#63797)
1 parent 1e36d44 commit fe94267

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2014 The Flutter Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
5+
import 'dart:async';
6+
7+
import 'package:flutter_devicelab/tasks/gallery.dart';
8+
import 'package:flutter_devicelab/framework/adb.dart';
9+
import 'package:flutter_devicelab/framework/framework.dart';
10+
11+
Future<void> main() async {
12+
deviceOperatingSystem = DeviceOperatingSystem.ios;
13+
await task(createGalleryTransitionE2ETest());
14+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2014 The Flutter Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style license that can be
3+
// found in the LICENSE file.
4+
5+
import 'dart:async';
6+
7+
import 'package:flutter_devicelab/tasks/gallery.dart';
8+
import 'package:flutter_devicelab/framework/adb.dart';
9+
import 'package:flutter_devicelab/framework/framework.dart';
10+
11+
Future<void> main() async {
12+
deviceOperatingSystem = DeviceOperatingSystem.ios;
13+
await task(createGalleryTransitionE2ETest());
14+
}

dev/devicelab/manifest.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,22 @@ tasks:
769769
required_agent_capabilities: ["linux/android"]
770770
flaky: true
771771

772+
flutter_gallery__transition_perf_e2e_ios32:
773+
description: >
774+
Measures the performance of screen transitions in Flutter Gallery on
775+
Android with e2e.
776+
stage: devicelab
777+
required_agent_capabilities: ["mac/ios32"]
778+
flaky: true
779+
780+
flutter_gallery__transition_perf_e2e_ios:
781+
description: >
782+
Measures the performance of screen transitions in Flutter Gallery on
783+
Android with e2e.
784+
stage: devicelab
785+
required_agent_capabilities: ["mac/ios"]
786+
flaky: true
787+
772788
flutter_gallery__transition_perf_hybrid:
773789
description: >
774790
Measures the performance of screen transitions in Flutter Gallery on

0 commit comments

Comments
 (0)