mirror of https://github.com/apache/lucene.git
- upgraded to bdb-je 3.3.69
- re-enabled testBytes() and testArrays() (per Aaron, Michael's instructions) git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@699961 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
96809b1238
commit
88283a7027
|
@ -5,10 +5,10 @@
|
|||
Lucene Berkeley DB Java Edition integration
|
||||
</description>
|
||||
|
||||
<property name="je.version" value="2.0.90" />
|
||||
<property name="je.version" value="3.3.69" />
|
||||
|
||||
<path id="je.jar">
|
||||
<pathelement location="lib/je-${je.version}/lib/je.jar" />
|
||||
<pathelement location="lib/je-${je.version}/lib/je-${je.version}.jar" />
|
||||
</path>
|
||||
|
||||
<available classname="com.sleepycat.je.Database" property="je.jar.exists">
|
||||
|
@ -29,7 +29,7 @@
|
|||
dest="lib/je-${je.version}.zip" />
|
||||
<unzip src="lib/je-${je.version}.zip" dest="lib">
|
||||
<patternset>
|
||||
<include name="je-${je.version}/lib/je.jar" />
|
||||
<include name="je-${je.version}/lib/je-${je.version}.jar" />
|
||||
</patternset>
|
||||
</unzip>
|
||||
</target>
|
||||
|
|
|
@ -108,7 +108,7 @@ public class JEStoreTest extends TestCase {
|
|||
env.close();
|
||||
}
|
||||
|
||||
public void tesBytes() throws Exception {
|
||||
public void testBytes() throws Exception {
|
||||
final int count = 250;
|
||||
final int LENGTH_MASK = 0xffff;
|
||||
|
||||
|
@ -482,7 +482,7 @@ public class JEStoreTest extends TestCase {
|
|||
}
|
||||
}
|
||||
|
||||
public void tesArrays() throws Exception {
|
||||
public void testArrays() throws Exception {
|
||||
final int count = 250;
|
||||
final int LENGTH_MASK = 0xffff;
|
||||
|
||||
|
|
Loading…
Reference in New Issue