Unverified Commit 0bf2c9b3 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Add local engine flag support to the SkSL caching performance benchmark scripts (#91773)

parent b9d0c73a
......@@ -814,6 +814,10 @@ class PerfTest {
final String deviceId = device.deviceId;
await flutter('drive', options: <String>[
if (localEngine != null)
...<String>['--local-engine', localEngine!],
if (localEngineSrcPath != null)
...<String>['--local-engine-src-path', localEngineSrcPath!],
'--no-dds',
'--no-android-gradle-daemon',
'-v',
......@@ -994,6 +998,10 @@ class PerfTestWithSkSL extends PerfTest {
_flutterPath,
<String>[
'run',
if (localEngine != null)
...<String>['--local-engine', localEngine!],
if (localEngineSrcPath != null)
...<String>['--local-engine-src-path', localEngineSrcPath!],
'--no-dds',
if (deviceOperatingSystem == DeviceOperatingSystem.ios)
...<String>[
......
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