You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2013/01/25 18:34:22 UTC

svn commit: r1438635 - in /incubator/hcatalog/branches/branch-0.5: CHANGES.txt build.properties storage-handlers/hbase/build.xml storage-handlers/hbase/src/test/all-tests storage-handlers/hbase/src/test/excluded-tests

Author: travis
Date: Fri Jan 25 18:34:22 2013
New Revision: 1438635

URL: http://svn.apache.org/viewvc?rev=1438635&view=rev
Log:
HCATALOG-606 remove hcatalog test includes/excludes files

Removed:
    incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/src/test/all-tests
    incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/src/test/excluded-tests
Modified:
    incubator/hcatalog/branches/branch-0.5/CHANGES.txt
    incubator/hcatalog/branches/branch-0.5/build.properties
    incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/build.xml

Modified: incubator/hcatalog/branches/branch-0.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/CHANGES.txt?rev=1438635&r1=1438634&r2=1438635&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.5/CHANGES.txt Fri Jan 25 18:34:22 2013
@@ -164,6 +164,8 @@ Release 0.5.0 - Unreleased
   OPTIMIZATIONS
 
   BUG FIXES
+  HCAT-606 remove hcatalog test includes/excludes files (traviscrawford)
+
   HCAT-599 NotificationListener doesn't use getTopic() for sending messages. (mithun via traviscrawford)
 
   HCAT-605 HCatalog release script does not update version in build.properties (traviscrawford)

Modified: incubator/hcatalog/branches/branch-0.5/build.properties
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build.properties?rev=1438635&r1=1438634&r2=1438635&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build.properties (original)
+++ incubator/hcatalog/branches/branch-0.5/build.properties Fri Jan 25 18:34:22 2013
@@ -39,8 +39,6 @@ test.warehouse.dir=${test.dir}/hcat_juni
 mvnrepo=http://repo2.maven.org/maven2
 test.src.dir=${basedir}/src/test
 test.junit.output.format=plain
-test.all.file=${test.src.dir}/all-tests
-test.exclude.file=${test.src.dir}/excluded-tests
 test.output=no
 test.excludes=e2e/**
 clover.jar=${clover.home}/lib/clover.jar

Modified: incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/build.xml?rev=1438635&r1=1438634&r2=1438635&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/build.xml (original)
+++ incubator/hcatalog/branches/branch-0.5/storage-handlers/hbase/build.xml Fri Jan 25 18:34:22 2013
@@ -64,8 +64,6 @@
     <property name="test.data.dir" value="${test.build.dir}/data" />
     <property name="test.timeout" value="2700000" />
     <property name="test.junit.output.format" value="plain" />
-    <property name="test.all.file" value="${test.src.dir}/all-tests"/>
-    <property name="test.exclude.file" value="${test.src.dir}/excluded-tests"/>
     <property name="test.output" value="no"/>
     <property name="hive.conf.dir" value="${hive.root}/conf"/>
 
@@ -150,12 +148,7 @@
                 <formatter type="${test.junit.output.format}" />
                 <!-- If the user has not defined a particular test to run, run them all -->
                 <batchtest fork="yes" todir="${test.log.dir}" unless="testcase">
-                    <fileset dir="src/test">
-                        <patternset>
-                            <includesfile name="${test.all.file}"/>
-                            <excludesfile name="${test.exclude.file}"/>
-                        </patternset>
-                    </fileset>
+                    <fileset dir="src/test" includes="**/Test*.java"/>
                     <fileset dir="src/test" includes="**/lock/*Test.java"/>
                 </batchtest>
                 <!-- Run one test case.  To use this define -Dtestcase=X on the command line -->