From 3680e581a8b6809e6c13f8e51756c3eddb9c89f7 Mon Sep 17 00:00:00 2001 From: Prashant Sharma Date: Mon, 10 Nov 2014 14:00:39 +0530 Subject: [PATCH] Revert "REVERT ME: Temporarily removing some Cli tests." This reverts commit b1ed44dec1845dcbed02bfe4266282357fe8db43. --- .../org/apache/spark/sql/hive/thriftserver/CliSuite.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/CliSuite.scala b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/CliSuite.scala index 8b9a8e1d7622b..e8ffbc5b954d4 100644 --- a/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/CliSuite.scala +++ b/sql/hive-thriftserver/src/test/scala/org/apache/spark/sql/hive/thriftserver/CliSuite.scala @@ -99,7 +99,7 @@ class CliSuite extends FunSuite with BeforeAndAfterAll with Logging { } } - ignore("Simple commands") { + test("Simple commands") { val dataFilePath = Thread.currentThread().getContextClassLoader.getResource("data/files/small_kv.txt") @@ -119,7 +119,7 @@ class CliSuite extends FunSuite with BeforeAndAfterAll with Logging { ) } - ignore("Single command with -e") { + test("Single command with -e") { runCliWithin(1.minute, Seq("-e", "SHOW TABLES;"))("" -> "OK") } }