Disable DartDev when running device lab tests (#62154)

This is a workaround for https://github.com/flutter/flutter/issues/62139
so that the engine roll pipeline can proceed.
This commit is contained in:
Jason Simmons 2020-07-23 14:17:27 -07:00 committed by GitHub
parent 9b35933b2b
commit fc72a5f105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,6 +37,7 @@ Future<Map<String, dynamic>> runTask(
<String>[
'--enable-vm-service=0', // zero causes the system to choose a free port
'--no-pause-isolates-on-exit',
'--disable-dart-dev',
if (localEngine != null) '-DlocalEngine=$localEngine',
if (localEngineSrcPath != null) '-DlocalEngineSrcPath=$localEngineSrcPath',
taskExecutable,