-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Classes loaded by inconsistent loaders (visible only in test) #39
Comments
Further evidence:
Changing
and setting a breakpoint on the The modified return statement here makes this specific test pass due to the additional check for name equality, but isn't the right solution (because we need to go beyond name matches). |
Things that haven't worked...
I've a strong sense that the classes (and the |
This problem might be caused by the delegation model of the standard Is it possible to force our subclass to always load all JAR and Module classes? There might be a performance impact, but it would at least allow us to force all classes into the same loader (and therefore not have the observed problem where types from different loaders were compared). |
Perhaps a new
|
I've also hit upon this issue while writing tests for issue #43. After fixing, check for disabled tests in the |
This test from
README.md
fails if it's run byTestSamples
fromCOVERAGE.md
:Presumably this is related to the way
TestSamples
invokesmain()
multiple times in the same JVM process, but I'm not entirely sure what's happening.Symptoms are that the test fails, having emitted no output whatsoever.
The text was updated successfully, but these errors were encountered: