summaryrefslogtreecommitdiffstats
path: root/cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh')
-rw-r--r--cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh b/cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh
new file mode 100644
index 0000000..5d65a7f
--- /dev/null
+++ b/cmso-sonar/docker/integration/cmso-service/etc/startJacocoService.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+apt update
+apt install wget
+apt install unzip --assume-yes
+wget http://repo1.maven.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.jar
+unzip org.jacoco.agent-0.8.2.jar
+cp org.jacoco.agent-0.8.2/jacocoagent.jar .
+ls -l
+
+VM_ARGS="${VM_ARGS} -javaagent:./jacocoagent.jar=destfile=/share/logs/service.jacoco.exec,dumponexit=true,jmx=true,append=true,output=file,includes=org.onap.*"
+
+echo "VM_ARGS=${VM_ARGS}"
+
+java -Djava.security.egd=file:/dev/./urandom -Xms256m -Xmx1024m ${VM_ARGS} -jar ./app.jar