-
Notifications
You must be signed in to change notification settings - Fork 121
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
JavaCompilerSpec.findsDocErrors
failing for Windows Java 17/21
#1451
Comments
JavaCompilerSpec
failing for Windows Java 17JavaCompilerSpec.findsDocErrors
failing for Windows Java 17
There's a deeper bug. "Loading source file, Constructing Javadoc information"... etc should be part of standard output and I now suspect it is actually a JDK bug, or maybe Scala is not properly forwarding the information to standard error somehow. Or maybe it is good old concurrency issue... The fix to explicitly match for "Loading source file, Constructing Javadoc information" did not actually fix the root cause. It also has i18n issue. |
JavaCompilerSpec.findsDocErrors
failing for Windows Java 17JavaCompilerSpec.findsDocErrors
failing for Windows Java 17/21
Might have to do with https://bugs.openjdk.org/browse/JDK-8280181?jql=affectedVersion%20%3D%20%2217%22%20AND%20text%20~%20%22javac%20standard%20error%22 Still, it is weird that it happens with the very specific configuration with Windows Java 17 & 21. |
Did more testing on Windows CMD. Indeed "Loading source file, Constructing Javadoc information" are emitted by Guess I shall conclude the investigation here. Nothing much we can do about the windows specific deviation.
|
c.c. #1440 (comment)
The issue is
JavaErrorParser.parseProblems
(in, logger) failing to parse javadoc output. Here's the problematicin
for referenceWith the log, it should be possible to debug the issue on other platforms.
The text was updated successfully, but these errors were encountered: