Forward stdout and stderr from dart2wasm when verbose. (flutter/engine#40731)

Forward stdout and stderr from dart2wasm when verbose.
This commit is contained in:
Jackson Gardner 2023-03-28 17:46:05 -07:00 committed by GitHub
parent e8d9ea46c2
commit 77dadc582f

View File

@ -293,7 +293,7 @@ class Dart2WasmCompiler extends TestCompiler {
arguments,
workingDirectory: inputTestSetDirectory.path,
failureIsSuccess: true,
evalOutput: true,
evalOutput: !isVerbose,
);
final int exitCode = await process.wait();