Skip to content

Commit

Permalink
Update to use jacoco. Do not log the LLVM command.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashesfall committed Feb 19, 2024
1 parent e6d9341 commit 8e36b3e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public List<String> getCommand(String inputFile, String outputFile, boolean lib)
command.add("-o");
command.add(outputFile);

log(Arrays.toString(command.toArray()));
// log(Arrays.toString(command.toArray()));

return command;
}
Expand Down
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,25 @@
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 8e36b3e

Please sign in to comment.