This is an automated email from the ASF dual-hosted git repository. billyliu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/master by this push: new cb3913b APACHE-KYLIN-3262: add on-the-fly instrumentation with using JaCoCo Java Agent for integration test cb3913b is described below commit cb3913b681a1230130376215cfa30477eb3692f0 Author: Zhong <nju_y...@apache.org> AuthorDate: Thu Feb 22 18:34:39 2018 +0800 APACHE-KYLIN-3262: add on-the-fly instrumentation with using JaCoCo Java Agent for integration test Signed-off-by: Billy Liu <billy...@apache.org> --- kylin-it/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kylin-it/pom.xml b/kylin-it/pom.xml index fd4fa8b..101f630 100644 --- a/kylin-it/pom.xml +++ b/kylin-it/pom.xml @@ -345,6 +345,7 @@ </systemProperties> <argLine>-Xms1G -Xmx2G -XX:PermSize=128M -XX:MaxPermSize=512M -Dkylin.server.cluster-servers=localhost:7070 + -javaagent:${project.basedir}/..//dev-support/jacocoagent.jar=includes=org.apache.kylin.*,output=file,destfile=jacoco-it.exec </argLine> </configuration> </plugin> @@ -372,6 +373,9 @@ <argument> -Dlog4j.configuration=file:${project.basedir}/..//build/conf/kylin-tools-log4j.properties </argument> + <argument> + -javaagent:${project.basedir}/..//dev-support/jacocoagent.jar=includes=org.apache.kylin.*,output=file,destfile=jacoco-it-engine.exec + </argument> <argument>-classpath</argument> <classpath /> <argument>org.apache.kylin.provision.BuildCubeWithEngine @@ -399,6 +403,9 @@ <argument> -Dlog4j.configuration=file:${project.basedir}/..//build/conf/kylin-tools-log4j.properties </argument> + <argument> + -javaagent:${project.basedir}/..//dev-support/jacocoagent.jar=includes=org.apache.kylin.*,output=file,destfile=jacoco-it-stream.exec + </argument> <argument>-classpath</argument> <classpath /> <argument>org.apache.kylin.provision.BuildCubeWithStream -- To stop receiving notification emails like this one, please contact billy...@apache.org.