Unverified Commit db2532a9 authored by Ming Lyu (CareF)'s avatar Ming Lyu (CareF) Committed by GitHub

migrate color_filter_and_fade_perf (#64484)

parent 473358d9
// 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:macrobenchmarks/common.dart';
import 'util.dart';
void main() {
macroPerfTestE2E(
'color_filter_and_fade_perf',
kColorFilterAndFadeRouteName,
pageDelay: const Duration(seconds: 1),
duration: const Duration(seconds: 10),
);
}
// 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:async';
import 'package:flutter_devicelab/tasks/perf_tests.dart';
import 'package:flutter_devicelab/framework/adb.dart';
import 'package:flutter_devicelab/framework/framework.dart';
Future<void> main() async {
deviceOperatingSystem = DeviceOperatingSystem.android;
await task(createColorFilterAndFadePerfE2ETest());
}
......@@ -291,6 +291,13 @@ TaskFunction createColorFilterAndFadePerfTest() {
).run;
}
TaskFunction createColorFilterAndFadePerfE2ETest() {
return PerfTest.e2e(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
'test/color_filter_and_fade_perf_e2e.dart',
).run;
}
TaskFunction createFadingChildAnimationPerfTest() {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
......
......@@ -269,6 +269,13 @@ tasks:
stage: devicelab
required_agent_capabilities: ["mac/android"]
color_filter_and_fade_perf__e2e_summary:
description: >
Measures the runtime performance of color filter with fade on Android.
stage: devicelab
required_agent_capabilities: ["linux/android"]
flaky: true
fading_child_animation_perf__timeline_summary:
description: >
Measures the runtime performance of opacity filter with fade on Android.
......
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