Skip to content

Commit

Permalink
feat(objectionary#2080): enable integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed May 22, 2023
1 parent 201895c commit 2e72d3e
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions eo-maven-plugin/src/it/duplicate_classes/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,5 @@ def disjoint = Files.walk(testClasses).filter(Files::isRegularFile)
return testClasses.relativize(it).toString()
}.noneMatch { binaries.contains(it) }
println "Compiled classes do not have duplicates: " + disjoint
/**
* @todo #2072:90min. Fix the bug with class intersection in the 'classes' and
* 'test-classes' folders. Both folders should contain different unique
* classes. In other words, we should avoid duplicating class compilation for
* tests. The problem with duplicated sources in tests was fixed:
* <a href="https://github.com/objectionary/eo/pull/2076">here<a/>
* But we still have problems with duplicated classes downloaded from
* dependencies. Apparently, we might check ResolveMojo to find the problem
* cause. Once the bug is fixed, uncomment the following statement.
*/
// assert disjoint
assert disjoint
return true

0 comments on commit 2e72d3e

Please sign in to comment.