- 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:
Andreas Vajda 2008-09-29 02:21:51 +00:00
parent 96809b1238
commit 88283a7027
2 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
Lucene Berkeley DB Java Edition integration Lucene Berkeley DB Java Edition integration
</description> </description>
<property name="je.version" value="2.0.90" /> <property name="je.version" value="3.3.69" />
<path id="je.jar"> <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> </path>
<available classname="com.sleepycat.je.Database" property="je.jar.exists"> <available classname="com.sleepycat.je.Database" property="je.jar.exists">
@ -29,7 +29,7 @@
dest="lib/je-${je.version}.zip" /> dest="lib/je-${je.version}.zip" />
<unzip src="lib/je-${je.version}.zip" dest="lib"> <unzip src="lib/je-${je.version}.zip" dest="lib">
<patternset> <patternset>
<include name="je-${je.version}/lib/je.jar" /> <include name="je-${je.version}/lib/je-${je.version}.jar" />
</patternset> </patternset>
</unzip> </unzip>
</target> </target>

View File

@ -108,7 +108,7 @@ public class JEStoreTest extends TestCase {
env.close(); env.close();
} }
public void tesBytes() throws Exception { public void testBytes() throws Exception {
final int count = 250; final int count = 250;
final int LENGTH_MASK = 0xffff; 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 count = 250;
final int LENGTH_MASK = 0xffff; final int LENGTH_MASK = 0xffff;