Skip to content
Snippets Groups Projects
Commit fa627877 authored by Christian Humer's avatar Christian Humer
Browse files

Disable new vector access nodes until last errors are resolved.

parent 764ce59a
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,7 @@ public abstract class ReplaceVectorNode extends Node {
/*
* TODO remove this as soon as the new vector access nodes are the default.
*/
public static final boolean USE_NODE = true;
public static final boolean USE_NODE = System.getProperty("newVectorAccess") != null ? System.getProperty("newVectorAccess").equals("true") : false;
protected static final int CACHE_LIMIT = 5;
......
......@@ -312,7 +312,7 @@ public class TestBase {
protected static final String ERROR = "Error";
protected static final String WARNING = "Warning message";
private static boolean IGNORE_ERROR_COMPARISON = true;
private static final boolean IGNORE_ERROR_COMPARISON = false;
/**
* If this is set to {@code true}, {@link Output#ContainsError} will compare the full output
......@@ -489,6 +489,7 @@ public class TestBase {
}
@SuppressWarnings("unused")
private CheckResult checkResult(WhiteList[] whiteLists, String input, String originalExpected, String originalResult, boolean containsWarning, boolean mayContainWarning, boolean containsError,
boolean mayContainError) {
boolean ok;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment