Commit 524d8379 authored by Devon Carew's avatar Devon Carew

more verbose test failures

parent 0364590b
......@@ -36,6 +36,10 @@ defineTests() {
ProcessResult exec = Process.runSync(
'dartanalyzer', ['--fatal-warnings', path],
workingDirectory: temp.path);
if (exec.exitCode != 0) {
print(exec.stdout);
print(exec.stderr);
}
expect(exec.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