Ignore TestPerformance by default since it fails without special configuration

This commit is contained in:
Sam Harwell 2012-02-09 13:30:44 -06:00
parent 7fb73a3849
commit 702b91fab7
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import org.antlr.v4.runtime.tree.ParseTree;
import org.antlr.v4.runtime.tree.ParseTreeListener;
import org.antlr.v4.runtime.tree.ParseTreeWalker;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import java.io.*;
@ -75,7 +76,7 @@ public class TestPerformance extends BaseTest {
private int tokenCount;
@Test
// @Ignore
@Ignore
public void compileJdk() throws IOException {
compileParser(USE_LR_GRAMMAR);
JavaParserFactory factory = getParserFactory();