File: 09-ignore-test-coverage.patch

package info (click to toggle)
asm 9.8-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,072 kB
  • sloc: java: 52,097; xml: 229; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Disables the test coverage report
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -221,6 +221,7 @@
 // checked for code coverage and backward compatibility, retrofitted to Java 1.5,
 // and packaged with generated module-info classes.
 configure(subprojects.findAll{it.provides}) {
+/*
   // Code coverage configuration.
   jacoco.toolVersion = '0.8.12'
   jacocoTestReport {
@@ -235,6 +236,7 @@
     dependsOn ':asm-commons:jar'
   }
   check.dependsOn jacocoTestCoverageVerification
+*/
 
   // Create one backward compatibility checking task for each 'sigtest-*' file
   // in test/resources, and make the 'check' task depend on all these tasks.