You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by va...@apache.org on 2008/09/29 04:21:52 UTC

svn commit: r699961 - in /lucene/java/trunk/contrib/db/bdb-je: build.xml src/test/org/apache/lucene/store/je/JEStoreTest.java

Author: vajda
Date: Sun Sep 28 19:21:51 2008
New Revision: 699961

URL: http://svn.apache.org/viewvc?rev=699961&view=rev
Log:
   - upgraded to bdb-je 3.3.69
   - re-enabled testBytes() and testArrays() (per Aaron, Michael's instructions)

Modified:
    lucene/java/trunk/contrib/db/bdb-je/build.xml
    lucene/java/trunk/contrib/db/bdb-je/src/test/org/apache/lucene/store/je/JEStoreTest.java

Modified: lucene/java/trunk/contrib/db/bdb-je/build.xml
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/db/bdb-je/build.xml?rev=699961&r1=699960&r2=699961&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/bdb-je/build.xml (original)
+++ lucene/java/trunk/contrib/db/bdb-je/build.xml Sun Sep 28 19:21:51 2008
@@ -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>

Modified: lucene/java/trunk/contrib/db/bdb-je/src/test/org/apache/lucene/store/je/JEStoreTest.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/db/bdb-je/src/test/org/apache/lucene/store/je/JEStoreTest.java?rev=699961&r1=699960&r2=699961&view=diff
==============================================================================
--- lucene/java/trunk/contrib/db/bdb-je/src/test/org/apache/lucene/store/je/JEStoreTest.java (original)
+++ lucene/java/trunk/contrib/db/bdb-je/src/test/org/apache/lucene/store/je/JEStoreTest.java Sun Sep 28 19:21:51 2008
@@ -108,7 +108,7 @@
             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 void tesArrays() throws Exception {
+    public void testArrays() throws Exception {
         final int count = 250;
         final int LENGTH_MASK = 0xffff;