You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by xu...@apache.org on 2015/07/16 06:41:07 UTC

[20/50] [abbrv] hive git commit: HIVE-11225: Running all Hive UTs or itests executes only small subset of tests(Ferdinand Xu, reviewed by Hari Sankar Sivarama Subramaniyan)

HIVE-11225: Running all Hive UTs or itests executes only small subset of tests(Ferdinand Xu, reviewed by Hari Sankar Sivarama Subramaniyan)


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

Branch: refs/heads/beeline-cli
Commit: 5c94bda99399d7861ba2c83de707305655231925
Parents: ad1cb15
Author: Ferdinand Xu <ch...@intel.com>
Authored: Sun Jul 12 21:50:20 2015 -0400
Committer: Ferdinand Xu <ch...@intel.com>
Committed: Sun Jul 12 21:50:20 2015 -0400

----------------------------------------------------------------------
 pom.xml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/5c94bda9/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f2cb761..1abf738 100644
--- a/pom.xml
+++ b/pom.xml
@@ -826,9 +826,8 @@
             <exclude>**/ql/exec/vector/udf/legacy/*.java</exclude>
             <exclude>**/ql/exec/vector/udf/generic/*.java</exclude>
             <exclude>**/TestHiveServer2Concurrency.java</exclude>
-            <exclude>**/TestHiveMetaStore.java</exclude>
             <exclude>${test.excludes.additional}</exclude>
-            <exclude>%regex[${skip.spark.files}]</exclude>
+            <exclude>${skip.spark.files}</exclude>
           </excludes>
           <redirectTestOutputToFile>true</redirectTestOutputToFile>
           <reuseForks>false</reuseForks>
@@ -1219,7 +1218,9 @@
 	</property>
       </activation>
       <properties>
-        <skip.spark.files>.*[TestSparkSessionManagerImpl|TestMultiSessionsHS2WithLocalClusterSpark|TestJdbcWithLocalClusterSpark].class</skip.spark.files>
+        <skip.spark.files>
+          **/ql/exec/spark/session/TestSparkSessionManagerImpl.java,**/TestMultiSessionsHS2WithLocalClusterSpark.java,**/TestJdbcWithLocalClusterSpark.java
+        </skip.spark.files>
       </properties>
     </profile>
   </profiles>