Unit Tests
- Disabled the new parser temporarily. Because the test suite coverage is good, the new parser needs a complete set of entities, otherwise it whines too much during the tests. Let's just sweep that under the rug for now.
This commit is contained in:
@@ -85,7 +85,11 @@ int Context::initialize (int argc, const char** argv)
|
||||
|
||||
// Initialize the command line parser.
|
||||
a3t.initialize (argc, argv);
|
||||
Tree* parseTree = a3t.parse ();
|
||||
|
||||
// TODO Uncommenting this breaks unit tests because of the errors it
|
||||
// generates.
|
||||
Tree* parseTree = NULL;
|
||||
//Tree* parseTree = a3t.parse ();
|
||||
|
||||
// END EXPERIMENTAL CODE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user