Default measureCpuGpu to true (#66386)

This commit is contained in:
Yuqian Li 2020-09-24 13:42:03 -07:00 committed by GitHub
parent 71c42c9c54
commit 48ce83a833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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