Unverified Commit b92d2501 authored by Yuqian Li's avatar Yuqian Li Committed by GitHub

Let perf tests measure memory by default (#66570)

Fixes https://github.com/flutter/flutter/issues/66569
parent bcb2ac5a
......@@ -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,
......
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