Unverified Commit 48ce83a8 authored by Yuqian Li's avatar Yuqian Li Committed by GitHub

Default measureCpuGpu to true (#66386)

parent 71c42c9c
......@@ -15,7 +15,7 @@ import 'package:flutter_devicelab/framework/framework.dart';
import 'package:flutter_devicelab/framework/utils.dart';
import 'package:flutter_devicelab/tasks/track_widget_creation_enabled_task.dart';
TaskFunction createComplexLayoutScrollPerfTest({bool measureCpuGpu = false}) {
TaskFunction createComplexLayoutScrollPerfTest({bool measureCpuGpu = true}) {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/complex_layout',
'test_driver/scroll_perf.dart',
......@@ -131,7 +131,7 @@ TaskFunction createFlutterGalleryTransitionsPerfSkSLWarmupE2ETest() {
).run;
}
TaskFunction createBackdropFilterPerfTest({bool measureCpuGpu = false}) {
TaskFunction createBackdropFilterPerfTest({bool measureCpuGpu = true}) {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
'test_driver/run_app.dart',
......@@ -149,7 +149,7 @@ TaskFunction createBackdropFilterPerfE2ETest() {
).run;
}
TaskFunction createPostBackdropFilterPerfTest({bool measureCpuGpu = false}) {
TaskFunction createPostBackdropFilterPerfTest({bool measureCpuGpu = true}) {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
'test_driver/run_app.dart',
......@@ -160,7 +160,7 @@ TaskFunction createPostBackdropFilterPerfTest({bool measureCpuGpu = false}) {
).run;
}
TaskFunction createSimpleAnimationPerfTest({bool measureCpuGpu = false}) {
TaskFunction createSimpleAnimationPerfTest({bool measureCpuGpu = true}) {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
'test_driver/run_app.dart',
......@@ -171,7 +171,7 @@ TaskFunction createSimpleAnimationPerfTest({bool measureCpuGpu = false}) {
).run;
}
TaskFunction createAnimatedPlaceholderPerfTest({bool measureCpuGpu = false}) {
TaskFunction createAnimatedPlaceholderPerfTest({bool measureCpuGpu = true}) {
return PerfTest(
'${flutterDirectory.path}/dev/benchmarks/macrobenchmarks',
'test_driver/run_app.dart',
......@@ -482,7 +482,7 @@ class PerfTest {
this.testDirectory,
this.testTarget,
this.timelineFileName, {
this.measureCpuGpu = false,
this.measureCpuGpu = true,
this.measureMemory = false,
this.saveTraceFile = false,
this.testDriver,
......@@ -495,7 +495,7 @@ class PerfTest {
const PerfTest.e2e(
this.testDirectory,
this.testTarget, {
this.measureCpuGpu = false,
this.measureCpuGpu = true,
this.measureMemory = false,
this.testDriver = 'test_driver/e2e_test.dart',
this.needsFullTimeline = false,
......
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