Jacoco report in command line

前端 未结 3 1024
终归单人心
终归单人心 2021-01-03 10:27

I have to write a .sh launching an UI application covered with Jacoco. On exit, a jacoco report must be generated.

I\'m not able to generate the jacoco.exec with thi

3条回答
  •  再見小時候
    2021-01-03 11:05

    The problem was the position of the -javaagent option. It needed to be in first position, like this :

    java -javaagent:/atgl/products/jacoco/0.6.3/lib/jacocoagent.jar=destfile=jacoco.exec -jar ../binaries/editor.debug/application.jar
    

    Then as Godin said, it's not possible to generate report in command line. I created an ant file exectoreport.xml with a rule do_jacoco_reports. The rule is launched by a script exectoreport.sh, that must be called after the natural exit of the application.

提交回复
热议问题