Let perf tests measure memory by default (#66570)

Fixes https://github.com/flutter/flutter/issues/66569
This commit is contained in:
Yuqian Li 2020-10-01 15:20:17 -07:00 committed by GitHub
parent bcb2ac5a55
commit b92d250116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -484,7 +484,7 @@ class PerfTest {
this.testTarget,
this.timelineFileName, {
this.measureCpuGpu = true,
this.measureMemory = false,
this.measureMemory = true,
this.saveTraceFile = false,
this.testDriver,
this.needsFullTimeline = true,
@ -497,7 +497,7 @@ class PerfTest {
this.testDirectory,
this.testTarget, {
this.measureCpuGpu = true,
this.measureMemory = false,
this.measureMemory = true,
this.testDriver = 'test_driver/e2e_test.dart',
this.needsFullTimeline = false,
this.benchmarkScoreKeys = _kCommonScoreKeys,