Enabling all tests.

git-svn-id: https://hyracks.googlecode.com/svn/branches/hyracks_btree_updates_next@606 123451ca-8445-de46-9d55-352943316053
diff --git a/hyracks-tests/hyracks-storage-am-btree-test/.classpath b/hyracks-tests/hyracks-storage-am-btree-test/.classpath
index f2cc5f7..53a91f6 100644
--- a/hyracks-tests/hyracks-storage-am-btree-test/.classpath
+++ b/hyracks-tests/hyracks-storage-am-btree-test/.classpath
@@ -2,6 +2,7 @@
 <classpath>
 	<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
 	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
 	<classpathentry kind="output" path="target/classes"/>
 </classpath>
diff --git a/hyracks-tests/hyracks-storage-am-btree-test/.project b/hyracks-tests/hyracks-storage-am-btree-test/.project
index bc6bc56..eaae253 100644
--- a/hyracks-tests/hyracks-storage-am-btree-test/.project
+++ b/hyracks-tests/hyracks-storage-am-btree-test/.project
@@ -15,8 +15,14 @@
 			<arguments>
 			</arguments>
 		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
 		<nature>org.eclipse.jdt.core.javanature</nature>
 		<nature>org.maven.ide.eclipse.maven2Nature</nature>
 	</natures>
diff --git a/hyracks-tests/hyracks-storage-am-btree-test/src/test/java/edu/uci/ics/hyracks/storage/am/btree/BTreeTestDriver.java b/hyracks-tests/hyracks-storage-am-btree-test/src/test/java/edu/uci/ics/hyracks/storage/am/btree/BTreeTestDriver.java
index 9f390f5..ef1e5e3 100644
--- a/hyracks-tests/hyracks-storage-am-btree-test/src/test/java/edu/uci/ics/hyracks/storage/am/btree/BTreeTestDriver.java
+++ b/hyracks-tests/hyracks-storage-am-btree-test/src/test/java/edu/uci/ics/hyracks/storage/am/btree/BTreeTestDriver.java
@@ -28,10 +28,10 @@
         ITupleReference highKey = TupleUtils.createIntegerTuple(1000);
         
         runTest(fieldSerdes, 1, BTreeLeafFrameType.REGULAR_NSM, lowKey, highKey, null, null);
-        //runTest(fieldSerdes, 1, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, null, null);
+        runTest(fieldSerdes, 1, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, null, null);
     }
     
-    //@Test
+    @Test
     public void twoIntKeys() throws Exception {        
         LOGGER.info("BTree " + getTestOpName() + " Test With Two Int Keys.");
         
@@ -49,7 +49,7 @@
         runTest(fieldSerdes, 2, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, prefixLowKey, prefixHighKey);
     }
     
-    //@Test
+    @Test
     public void twoIntKeysAndValues() throws Exception {        
         LOGGER.info("BTree " + getTestOpName() + " Test With Two Int Keys And Values.");
         
@@ -67,7 +67,7 @@
         runTest(fieldSerdes, 2, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, prefixLowKey, prefixHighKey);
     }        
     
-    //@Test
+    @Test
     public void oneStringKeyAndValue() throws Exception {        
         LOGGER.info("BTree " + getTestOpName() + " Test With One String Key And Value.");
         
@@ -81,7 +81,7 @@
         runTest(fieldSerdes, 1, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, null, null);
     }
     
-    //@Test
+    @Test
     public void twoStringKeys() throws Exception {        
         LOGGER.info("BTree " + getTestOpName() + " Test With Two String Keys.");
         
@@ -99,7 +99,7 @@
         runTest(fieldSerdes, 2, BTreeLeafFrameType.FIELD_PREFIX_COMPRESSED_NSM, lowKey, highKey, prefixLowKey, prefixHighKey);
     }
     
-    //@Test
+    @Test
     public void twoStringKeysAndValues() throws Exception {        
         LOGGER.info("BTree " + getTestOpName() + " Test With Two String Keys And Values.");