add missing forwards of local-engine-host in benchmark runners (#133517)

Some places where we are missing a forward of the `--local-engine-host` values in the benchmark code preventing local running of the benchmarks (does not affect CI usages which don't override local engine).
This commit is contained in:
Jim Graham
2023-08-28 17:31:14 -07:00
committed by GitHub
parent 42e2f4fb3e
commit 88717b3c65

View File

@@ -120,6 +120,7 @@ Future<void> main(List<String> rawArgs) async {
await runTasks(taskNames,
silent: silent,
localEngine: localEngine,
localEngineHost: localEngineHost,
localEngineSrcPath: localEngineSrcPath,
deviceId: deviceId,
exitOnFirstTestFailure: exitOnFirstTestFailure,
@@ -177,6 +178,7 @@ Future<void> _runABTest({
taskName,
silent: silent,
localEngine: localEngine,
localEngineHost: localEngineHost,
localWebSdk: localWebSdk,
localEngineSrcPath: localEngineSrcPath,
deviceId: deviceId,