Author: travis
Date: Fri Jan 25 18:31:27 2013
New Revision: 1438633
URL: http://svn.apache.org/viewvc?rev=1438633&view=rev
Log:
HCATALOG-606 remove hcatalog test includes/excludes files
Removed:
incubator/hcatalog/trunk/storage-handlers/hbase/src/test/all-tests
incubator/hcatalog/trunk/storage-handlers/hbase/src/test/excluded-tests
Modified:
incubator/hcatalog/trunk/CHANGES.txt
incubator/hcatalog/trunk/build.properties
incubator/hcatalog/trunk/storage-handlers/hbase/build.xml
Modified: incubator/hcatalog/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1438633&r1=1438632&r2=1438633&view=diff
==============================================================================
--- incubator/hcatalog/trunk/CHANGES.txt (original)
+++ incubator/hcatalog/trunk/CHANGES.txt Fri Jan 25 18:31:27 2013
@@ -178,6 +178,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/trunk/build.properties
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/build.properties?rev=1438633&r1=1438632&r2=1438633&view=diff
==============================================================================
--- incubator/hcatalog/trunk/build.properties (original)
+++ incubator/hcatalog/trunk/build.properties Fri Jan 25 18:31:27 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/trunk/storage-handlers/hbase/build.xml
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/trunk/storage-handlers/hbase/build.xml?rev=1438633&r1=1438632&r2=1438633&view=diff
==============================================================================
--- incubator/hcatalog/trunk/storage-handlers/hbase/build.xml (original)
+++ incubator/hcatalog/trunk/storage-handlers/hbase/build.xml Fri Jan 25
18:31:27 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 -->