Repository: sqoop
Updated Branches:
refs/heads/trunk 28896c8df -> 65b51b959
SQOOP-3406 Sqoop should not try to execute test category interfaces as tests with Ant
(Szabolcs Vasas via Fero Szabo)
Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/65b51b95
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/65b51b95
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/65b51b95
Branch: refs/heads/trunk
Commit: 65b51b959eefd1e3eef540f570e048877f5a4026
Parents: 28896c8
Author: Fero Szabo <fero@apache.org>
Authored: Wed Nov 21 14:52:46 2018 +0100
Committer: Fero Szabo <fero@apache.org>
Committed: Wed Nov 21 14:52:46 2018 +0100
----------------------------------------------------------------------
build.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/sqoop/blob/65b51b95/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 995a513..a0e2519 100644
--- a/build.xml
+++ b/build.xml
@@ -946,7 +946,10 @@
<batchtest todir="${build.test}" unless="testcase">
<fileset dir="${test.dir}"
includes="**/${test.pattern}.java"
- excludes="**/${test.exclude}.java" />
+ excludes="**/${test.exclude}.java,**/KerberizedTest.java,**/IntegrationTest.java,**/SqoopTest.java,
+ **/UnitTest.java,**/CubridTest.java,**/Db2Test.java,**/MainFrameTest.java,**/MysqlTest.java,
+ **/NetezzaTest.java,**/OracleTest.java,**/PostgresqlTest.java,**/S3Test.java,**/SqlServerTest.java,
+ **/ThirdPartyTest.java"/>
</batchtest>
<batchtest todir="${build.test}" if="testcase">
<fileset dir="${test.dir}" includes="**/${testcase}.java"/>
|