You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by jm...@apache.org on 2018/04/06 20:05:23 UTC

[accumulo] branch master updated: Fix ShellServerIT test in master

This is an automated email from the ASF dual-hosted git repository.

jmark99 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new b248db6  Fix ShellServerIT test in master
b248db6 is described below

commit b248db6b7746a5e85d5da6d36400ec1976fcd156
Author: Mark Owens <jm...@gmail.com>
AuthorDate: Fri Apr 6 12:31:24 2018 -0400

    Fix ShellServerIT test in master
    
    The master branch needed several quick IT test updates to ShellServerIT to pass successfully with the
    recent changes to the setshelliter command. These tests did not exist in the 1.8 line and were not updated
    with the recent 1.8 merge. They involved the '-t table' option from several setshelliter statments in the
    tests.
---
 test/src/main/java/org/apache/accumulo/test/ShellServerIT.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java b/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
index 7216a4f..fb64e8f 100644
--- a/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/ShellServerIT.java
@@ -2199,7 +2199,7 @@ public class ShellServerIT extends SharedMiniClusterBase {
     Assert.assertTrue(output.contains(tmpTable));
 
     ts.input.set("\n5000\n\n");
-    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff -t " + tmpTable, true);
+    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff", true);
     output = ts.exec("listshelliter");
     Assert.assertTrue(output.contains("Profile : profile1"));
 
@@ -2232,12 +2232,12 @@ public class ShellServerIT extends SharedMiniClusterBase {
     Assert.assertTrue(output.contains(tmpTable));
 
     ts.input.set("\n5000\n\n");
-    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff -t " + tmpTable, true);
+    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff", true);
     output = ts.exec("listshelliter");
     Assert.assertTrue(output.contains("Profile : profile1"));
 
     ts.input.set("2\n");
-    ts.exec("setshelliter -n iter2 -p 11 -pn profile2 -vers -t " + tmpTable, true);
+    ts.exec("setshelliter -n iter2 -p 11 -pn profile2 -vers", true);
     output = ts.exec("listshelliter");
     Assert.assertTrue(output.contains("Profile : profile2"));
 
@@ -2266,7 +2266,7 @@ public class ShellServerIT extends SharedMiniClusterBase {
     String output = ts.exec("tables");
     Assert.assertTrue(output.contains(tmpTable));
     ts.input.set("\n5000\n\n");
-    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff -t " + tmpTable, true);
+    ts.exec("setshelliter -n itname -p 10 -pn profile1 -ageoff", true);
     output = ts.exec("listshelliter");
     Assert.assertTrue(output.contains("Profile : profile1"));
     // test various bad argument calls

-- 
To stop receiving notification emails like this one, please contact
jmark99@apache.org.