Default value for TestPerformance.BAIL_ON_ERROR is now false since it's overridden anyway for first phase of two-stage parsing

This commit is contained in:
Sam Harwell 2013-04-21 14:56:28 -05:00
parent e438b60f37
commit 82f4d07243
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ public class TestPerformance extends BaseTest {
* {@code true} to use {@link BailErrorStrategy}, {@code false} to use
* {@link DefaultErrorStrategy}.
*/
private static final boolean BAIL_ON_ERROR = true;
private static final boolean BAIL_ON_ERROR = false;
/**
* {@code true} to compute a checksum for verifying consistency across
* optimizations and multiple passes.