diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/constexpr/TestBase.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/constexpr/TestBase.java index 1c473cfbfda..2a2b7504632 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/constexpr/TestBase.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/constexpr/TestBase.java @@ -55,6 +55,12 @@ public class TestBase extends IndexBindingResolutionTestBase { private static final IParserLogService NULL_LOG = new NullLogService(); private static final ScannerInfo SCANNER_INFO = new ScannerInfo(getStdMap()); + public TestBase() { + // Pick a default startegy, just so that we can run test cases individually + // for debugging purposes. + setStrategy(new NonIndexingTestStrategy()); + } + private static Map getStdMap() { Map map = new HashMap<>(); map.put("__SIZEOF_SHORT__", "2");