mirror of https://github.com/apache/lucene.git
make test less evil
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1617928 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f25288764a
commit
8d260c3bc0
|
@ -723,11 +723,15 @@ public class TestAutomaton extends LuceneTestCase {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
if (VERBOSE) {
|
if (a.getNumStates() < 200) {
|
||||||
System.out.println(" op=minimize");
|
if (VERBOSE) {
|
||||||
|
System.out.println(" op=minimize");
|
||||||
|
}
|
||||||
|
// minimize
|
||||||
|
a = MinimizationOperations.minimize(a);
|
||||||
|
} else if (VERBOSE) {
|
||||||
|
System.out.println(" skip op=minimize: too many states (" + a.getNumStates() + ")");
|
||||||
}
|
}
|
||||||
// minimize
|
|
||||||
a = MinimizationOperations.minimize(a);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 4:
|
case 4:
|
||||||
|
|
Loading…
Reference in New Issue