mirror of https://github.com/apache/lucene.git
LUCENE-2554: pick a random codec for each unit test
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/preflexfixes@978877 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
94dbf446ed
commit
a964231882
|
@ -240,8 +240,10 @@ public class _TestUtil {
|
|||
|
||||
/** gets the codec to run tests with */
|
||||
public static String getTestCodec() {
|
||||
// nocommit: should we default to random?
|
||||
return System.getProperty("tests.codec", "Standard");
|
||||
// by default we randomly pick a different codec for
|
||||
// each test case (non-J4 tests) and each test class (J4
|
||||
// tests)
|
||||
return System.getProperty("tests.codec", "random");
|
||||
}
|
||||
|
||||
public static CodecProvider alwaysCodec(final Codec c) {
|
||||
|
|
Loading…
Reference in New Issue