You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by mm...@apache.org on 2018/02/27 05:39:47 UTC

hive git commit: HIVE-18806: Add @Ignore for broken test caused by HIVE-18493 (Matt McCline, reviewed by Deepak Jaiswal)

Repository: hive
Updated Branches:
  refs/heads/master 4b22fcbda -> 987d5fff2


HIVE-18806: Add @Ignore for broken test caused by HIVE-18493 (Matt McCline, reviewed by Deepak Jaiswal)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/987d5fff
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/987d5fff
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/987d5fff

Branch: refs/heads/master
Commit: 987d5fff268431e5f9554df7129f7bedd9ad9d5a
Parents: 4b22fcb
Author: Matt McCline <mm...@hortonworks.com>
Authored: Mon Feb 26 23:39:35 2018 -0600
Committer: Matt McCline <mm...@hortonworks.com>
Committed: Mon Feb 26 23:39:35 2018 -0600

----------------------------------------------------------------------
 beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java     | 2 ++
 .../test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java    | 3 +++
 2 files changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/987d5fff/beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java
----------------------------------------------------------------------
diff --git a/beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java b/beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java
index df01ca8..6684ddd 100644
--- a/beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java
+++ b/beeline/src/test/org/apache/hive/beeline/cli/TestHiveCli.java
@@ -24,6 +24,7 @@ import org.junit.After;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.Test;
+import org.junit.Ignore;
 
 import java.io.BufferedWriter;
 import java.io.ByteArrayOutputStream;
@@ -252,6 +253,7 @@ public class TestHiveCli {
         "hive (invalidDB)>", os, null, ERRNO_OTHER, false);
   }
 
+  @Ignore("Broken tests -- HIVE-18806")
   @Test
   public void testNoErrorDB() {
     verifyCMD(null, "Error: Method not supported (state=,code=0)", errS, new String[] { "-e", "show tables;" },

http://git-wip-us.apache.org/repos/asf/hive/blob/987d5fff/itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java
----------------------------------------------------------------------
diff --git a/itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java b/itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java
index f51cbfa..b074733 100644
--- a/itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java
+++ b/itests/hive-unit/src/test/java/org/apache/hive/beeline/TestBeeLineWithArgs.java
@@ -57,6 +57,7 @@ import org.junit.AfterClass;
 import org.junit.Assert;
 import org.junit.BeforeClass;
 import org.junit.Test;
+import org.junit.Ignore;
 
 /**
  * TestBeeLineWithArgs - executes tests of the command-line arguments to BeeLine
@@ -927,6 +928,7 @@ public class TestBeeLineWithArgs {
    * Test Beeline could show the query progress for time-consuming query.
    * @throws Throwable
    */
+  @Ignore("Broken tests -- HIVE-18806")
   @Test
   public void testQueryProgress() throws Throwable {
     final String SCRIPT_TEXT =
@@ -954,6 +956,7 @@ public class TestBeeLineWithArgs {
    *
    * @throws Throwable
    */
+  @Ignore("Broken tests -- HIVE-18806")
   @Test
   public void testQueryProgressParallel() throws Throwable {
     final String SCRIPT_TEXT = "set hive.support.concurrency = false;\n" +