Update of /cvsroot/cweb/bigdata/src/test/com/bigdata/journal
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv24236/src/test/com/bigdata/journal
Modified Files:
AbstractBufferStrategyTestCase.java
Log Message:
Modified the IndexSegmentBuilder to use the new TemporaryStore and removed the fullyBuffer boolean option since data will be automatically buffered out to 100M and the spill over onto disk.
Index: AbstractBufferStrategyTestCase.java
===================================================================
RCS file: /cvsroot/cweb/bigdata/src/test/com/bigdata/journal/AbstractBufferStrategyTestCase.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AbstractBufferStrategyTestCase.java 9 Feb 2007 16:13:17 -0000 1.1
--- AbstractBufferStrategyTestCase.java 15 Feb 2007 22:01:18 -0000 1.2
***************
*** 53,56 ****
--- 53,57 ----
import java.util.Random;
+ import com.bigdata.objndx.IndexSegmentBuilder;
import com.bigdata.rawstore.AbstractRawStoreTestCase;
import com.bigdata.rawstore.Bytes;
***************
*** 58,61 ****
--- 59,67 ----
/**
+ *
+ * @todo write tests for
+ * {@link IBufferStrategy#transferTo(java.io.RandomAccessFile)}. This
+ * code is currently getting "checked" by the {@link IndexSegmentBuilder}.
+ *
* @author <a href="mailto:tho...@us...">Bryan Thompson</a>
* @version $Id$
|