Unverified Commit 262a963e authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

flutter_build_null_unsafe_test print failed build output (#98310)

parent 1be67ab9
...@@ -76,7 +76,10 @@ String unsafeString = null; ...@@ -76,7 +76,10 @@ String unsafeString = null;
'--no-sound-null-safety', '--no-sound-null-safety',
if (targetPlatform == 'ios') '--no-codesign', if (targetPlatform == 'ios') '--no-codesign',
], workingDirectory: projectRoot.path); ], workingDirectory: projectRoot.path);
expect(result.exitCode, 0);
if (result.exitCode != 0) {
fail('build --no-sound-null-safety failed: ${result.exitCode}\n${result.stderr}\n${result.stdout}');
}
}); });
} }
} }
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