Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.1.1
-
None
Description
When running "mvn install", the unit tests fail.
The problem is with the tests in the jdk14 directory, ie those that test commons-logging forwarding to a java.util.logging implementation.
The same tests works fine with java15 on linux. Others have reported that the tests work fine with java16 on Windows.
The problem seems to be that somehow java.util.logging is not registering our dummy LogHandler implementation that the unit test uses to then verify that the messages have correctly been forwarded.
Note that this is likely just a problem with the unit test. It is believed that the real commons-logging code actually works fine.
It appears that the problem has something to do with the tests in the "noop" directory. Changing the pom to do this:
<excludes>
<exclude>**/noop/*TestCase.java</exclude>
</excludes>
makes the jdk14 tests run fine.