Repository: sqoop Updated Branches: refs/heads/sqoop2 bb81a890b -> c2180caac
SQOOP-2816: Sqoop2: Shell integration tests should pass when running against a real cluster (Abraham Fine via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/c2180caa Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/c2180caa Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/c2180caa Branch: refs/heads/sqoop2 Commit: c2180caac1cf3ca4d33281d39d9b2989ea52334a Parents: bb81a89 Author: Jarek Jarcec Cecho <[email protected]> Authored: Thu Feb 4 14:36:09 2016 -0800 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Thu Feb 4 14:36:09 2016 -0800 ---------------------------------------------------------------------- .../main/java/org/apache/sqoop/test/testcases/ShellTestCase.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/c2180caa/test/src/main/java/org/apache/sqoop/test/testcases/ShellTestCase.java ---------------------------------------------------------------------- diff --git a/test/src/main/java/org/apache/sqoop/test/testcases/ShellTestCase.java b/test/src/main/java/org/apache/sqoop/test/testcases/ShellTestCase.java index bfae595..615d67f 100644 --- a/test/src/main/java/org/apache/sqoop/test/testcases/ShellTestCase.java +++ b/test/src/main/java/org/apache/sqoop/test/testcases/ShellTestCase.java @@ -26,12 +26,14 @@ import org.apache.sqoop.test.infrastructure.SqoopTestCase; import org.codehaus.groovy.tools.shell.Groovysh; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.util.List; +@Test(groups = "no-real-cluster") abstract public class ShellTestCase extends SqoopTestCase { protected SqoopCommand command = null;
