Exit code on errors.

This commit is contained in:
Erich Schubert 2018-10-27 13:11:58 +02:00
parent e51f53b25e
commit 644d148455
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ public class BasicTest {
pw.println();
pw.println();
pw.flush();
System.exit(differences.size() > 0 ? 1 : 0);
}
private static void performViewTests(List<String> differences, File outFolder)