You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/03/27 18:27:26 UTC

svn commit: r1461730 - in /accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test: MiniAccumuloClusterTest.java ShellServerTest.java

Author: ecn
Date: Wed Mar 27 17:27:26 2013
New Revision: 1461730

URL: http://svn.apache.org/r1461730
Log:
ACCUMULO-1215 add some extra time to tests to accumodate slower build servers

Modified:
    accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java
    accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java

Modified: accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java?rev=1461730&r1=1461729&r2=1461730&view=diff
==============================================================================
--- accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java (original)
+++ accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/MiniAccumuloClusterTest.java Wed Mar 27 17:27:26 2013
@@ -135,7 +135,7 @@ public class MiniAccumuloClusterTest {
     conn.tableOperations().delete("table1");
   }
   
-  @Test(timeout = 30000)
+  @Test(timeout = 60000)
   public void testPerTableClasspath() throws Exception {
     
     Connector conn = new ZooKeeperInstance(accumulo.getInstanceName(), accumulo.getZooKeepers()).getConnector("root", new PasswordToken("superSecret"));

Modified: accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java
URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java?rev=1461730&r1=1461729&r2=1461730&view=diff
==============================================================================
--- accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java (original)
+++ accumulo/branches/1.5/test/src/test/java/org/apache/accumulo/test/ShellServerTest.java Wed Mar 27 17:27:26 2013
@@ -641,6 +641,7 @@ public class ShellServerTest {
     exec("insert a b c value", true);
     exec("scan -np", true, "value", true);
     exec("deletetable -f t");
+    exec("sleep 1");
     String trace = exec("trace off");
     //System.out.println("trace: " + trace);
     assertTrue(trace.contains("binMutations"));