e2e perf tests don't have CPU/GPU/memory metrics (#70439)

Address comment in https://github.com/flutter/flutter/pull/66386/files#r522671103
This commit is contained in:
Yuqian Li 2020-11-13 11:16:50 -08:00 committed by GitHub
parent 8de63d11b8
commit f7811ea541
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -548,8 +548,8 @@ class PerfTest {
const PerfTest.e2e(
this.testDirectory,
this.testTarget, {
this.measureCpuGpu = true,
this.measureMemory = true,
this.measureCpuGpu = false,
this.measureMemory = false,
this.testDriver = 'test_driver/e2e_test.dart',
this.needsFullTimeline = false,
this.benchmarkScoreKeys = _kCommonScoreKeys,