Sysout of the randomized pattern.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1294518 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dawid Weiss 2012-02-28 08:15:38 +00:00
parent 4d401ca87d
commit f3cc65733b
1 changed files with 2 additions and 0 deletions

View File

@ -296,7 +296,9 @@ public class TestPatternReplaceCharFilter extends BaseTokenStreamTestCase {
return new PatternReplaceCharFilter(p, replacement, CharReader.get(reader));
}
};
long s = System.currentTimeMillis();
checkRandomData(random, a, 1000 * RANDOM_MULTIPLIER, true); // only ascii
System.out.println((System.currentTimeMillis() - s) / 1000.0 + " > " + p);
}
}