-
Notifications
You must be signed in to change notification settings - Fork 362
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
Challenges running java.util.logging.Logger.getLogger in JPF #341
Comments
Considering that JDK's implementation of logging API involves interactions with the module system which JPF doesn't fully support yet and core functions of |
is somebody working on this? I would like to pick it up |
Hello @cyrille-artho @copumpkin, |
Yes, whenever there is no concrete discussion on a solution attempt for a given issue, this means that nobody is working on it. |
@cyrille-artho I am attempting to replicate this issue on my local machine, but I encountered the following error. Steps taken to reproduce the issue:
Observed output:
Analysis:Upon investigating, I found that I ran the same steps using Java 8, and JPF executed successfully. |
The main branch of |
I have this super minimal reproduction:
I'm running it against the
java-10-gradle
branch (a816054) and the first thing I get when calling that is:So I added an extra method with an (ignored) boolean to here:
jpf-core/src/classes/modules/java.base/java/lang/Thread.java
Lines 118 to 121 in a816054
I then ran into a similar issue from
java.security.AccessController
and added another dummy overload there.That got me past the initial issue, but now I'm stuck here:
Which doesn't seem to be as easy to fix as the two above. Anyone have hints for how to get past this?
The text was updated successfully, but these errors were encountered: