1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

bug 296904: [Error Parser] Make error parser should report non-fatal errors as Warnings instead of Errors

Now "Target 'X' not remade because of errors" is reported as error.
This commit is contained in:
Andrew Gvozdev 2010-01-29 23:44:16 +00:00
parent d5aa27dab8
commit eb3dbb78f0

View file

@ -186,7 +186,7 @@ public class ErrorParserManagerTest extends TestCase {
epManager.write(b, 0, k); epManager.write(b, 0, k);
} }
end(); end();
assertEquals(19, errorList.size()); assertEquals(22, errorList.size());
} }