You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by bl...@apache.org on 2019/09/29 15:25:23 UTC

[avro] branch master updated: AVRO-2560: Skip unnecessary mvn execution for speeding up tests (#649)

This is an automated email from the ASF dual-hosted git repository.

blachniet pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new ea1ee73  AVRO-2560: Skip unnecessary mvn execution for speeding up tests (#649)
ea1ee73 is described below

commit ea1ee734ab12f8b931683cd9511b127257d41954
Author: Kengo Seki <se...@apache.org>
AuthorDate: Sun Sep 29 08:25:18 2019 -0700

    AVRO-2560: Skip unnecessary mvn execution for speeding up tests (#649)
---
 build.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sh b/build.sh
index 73935a3..05ec171 100755
--- a/build.sh
+++ b/build.sh
@@ -77,7 +77,7 @@ do
       (cd lang/perl; ./build.sh interop-data-generate)
 
       # run interop data tests
-      (cd lang/java; mvn -B test -P interop-data-test)
+      (cd lang/java/ipc; mvn -B test -P interop-data-test)
       (cd lang/py; ant interop-data-test)
       (cd lang/py3; python3 setup.py test --test-suite avro.tests.test_datafile_interop.TestDataFileInterop)
       (cd lang/c; ./build.sh interop-data-test)
@@ -88,7 +88,7 @@ do
       (cd lang/perl; ./build.sh interop-data-test)
 
       # java needs to package the jars for the interop rpc tests
-      (cd lang/java; mvn -B package -DskipTests)
+      (cd lang/java/tools; mvn -B package -DskipTests)
 
       # run interop rpc test
       ./share/test/interop/bin/test_rpc_interop.sh