Unverified Commit 63852d20 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Roll flutter engine to a24c7c13925e4e3282f7b85814b70e63782fa057 (#67193)

* Roll flutter engine to a24c7c13925e4e3282f7b85814b70e63782fa057
parent 60d7bb25
87a10f240f6b64d5978c97de9e66310ac5004914 a24c7c13925e4e3282f7b85814b70e63782fa057
CG6NCkBX9NVzB8GEXPIrAZfAF_rnSSAgvO0dFGp4P0wC 8EvelbjqfxB3wn8AZ87H43bfUHvYKPxYeeticZzeTZoC
gZ122oeKO8o63jCEfdrVDN8mIa9IIcta8bJSAAuVoHgC 1i9GaCxm83LAkPJB61QsV9YDFuiLiZdDsNWSEXAbqSAC
...@@ -207,7 +207,7 @@ class TestCase { ...@@ -207,7 +207,7 @@ class TestCase {
printOutputDefault: true, printOutputDefault: true,
); );
final ProcessRunnerResult result = await runner.runProcess( final ProcessRunnerResult result = await runner.runProcess(
<String>[flutter, 'analyze', '--enable-experiment=non-nullable', '--current-package', '--pub', '--congratulate', '.'], <String>[flutter, 'analyze', '--current-package', '--enable-experiment=non-nullable', '--pub', '--congratulate', '.'],
failOk: true, failOk: true,
); );
if (result.exitCode != 0) { if (result.exitCode != 0) {
...@@ -225,7 +225,7 @@ class TestCase { ...@@ -225,7 +225,7 @@ class TestCase {
for (final File test in tests) { for (final File test in tests) {
final String testPath = path.join(path.dirname(test.path), 'lib', path.basenameWithoutExtension(test.path)); final String testPath = path.join(path.dirname(test.path), 'lib', path.basenameWithoutExtension(test.path));
final ProcessRunnerResult result = await runner.runProcess( final ProcessRunnerResult result = await runner.runProcess(
<String>[flutter, 'test', '--enable-experiment=non-nullable', '--null-assertions', testPath], <String>[flutter, 'test', '--enable-experiment=non-nullable', '--no-sound-null-safety', '--null-assertions', testPath],
failOk: true, failOk: true,
); );
if (result.exitCode != 0) { if (result.exitCode != 0) {
......
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