You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ma...@apache.org on 2015/05/26 17:21:06 UTC

[20/32] incubator-kylin git commit: KYLIN-697 ignore problematic test cases

KYLIN-697 ignore problematic test cases


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/2964a034
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/2964a034
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/2964a034

Branch: refs/heads/0.8.0
Commit: 2964a03482e9704f8713eedd88148068607f08b4
Parents: ee8959c
Author: honma <ho...@ebay.com>
Authored: Tue May 26 13:22:38 2015 +0800
Committer: honma <ho...@ebay.com>
Committed: Tue May 26 23:21:27 2015 +0800

----------------------------------------------------------------------
 .../org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java     | 1 +
 .../org/apache/kylin/rest/controller/ITTableControllerTest.java   | 3 +++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/2964a034/job/src/test/java/org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java
----------------------------------------------------------------------
diff --git a/job/src/test/java/org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java b/job/src/test/java/org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java
index 756a38c..d7aa856 100644
--- a/job/src/test/java/org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java
+++ b/job/src/test/java/org/apache/kylin/job/ITKafkaBasedIIStreamBuilderTest.java
@@ -50,6 +50,7 @@ import java.io.IOException;
 
 /**
  */
+@Ignore("this test case will break existing metadata store")
 public class ITKafkaBasedIIStreamBuilderTest {
 
     private static final Logger logger = LoggerFactory.getLogger(ITKafkaBasedIIStreamBuilderTest.class);

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/2964a034/server/src/test/java/org/apache/kylin/rest/controller/ITTableControllerTest.java
----------------------------------------------------------------------
diff --git a/server/src/test/java/org/apache/kylin/rest/controller/ITTableControllerTest.java b/server/src/test/java/org/apache/kylin/rest/controller/ITTableControllerTest.java
index 75defbf..7e6dd5a 100644
--- a/server/src/test/java/org/apache/kylin/rest/controller/ITTableControllerTest.java
+++ b/server/src/test/java/org/apache/kylin/rest/controller/ITTableControllerTest.java
@@ -23,6 +23,7 @@ import org.apache.kylin.rest.service.CubeService;
 import org.apache.kylin.rest.service.ServiceTestBase;
 import org.junit.Assert;
 import org.junit.Before;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.springframework.beans.factory.annotation.Autowired;
 
@@ -33,6 +34,8 @@ import java.util.Map;
 /**
  * @author shaoshi
  */
+//TODO: break this into unit tests
+@Ignore("ServiceTestBase has been changed to local meta tests, thus not suitable for hive related tests")
 public class ITTableControllerTest extends ServiceTestBase {
 
     private TableController tableController;