RFR: 8337221: CompileFramework: test library to conveniently compile java and jasm sources for fuzzing
Christian Hagedorn
chagedorn at openjdk.org
Mon Sep 16 08:49:16 UTC 2024
On Mon, 29 Jul 2024 08:32:50 GMT, Emanuel Peter <epeter at openjdk.org> wrote:
>> test/hotspot/jtreg/compiler/lib/compile_framework/CompileFramework.java line 222:
>>
>>> 220: }
>>> 221:
>>> 222: if (exitCode != 0 || !output.equals("")) {
>>
>>> Note: FuzzerUtils.java uses or overrides a deprecated API.
>>> Note: Recompile with -Xlint:deprecation for details.
>>
>> Warnings could corrupt the output. And we probably need to at least make it controllable.
>
> I see. I have so far not encountered any issues. I would like to keep it simple for now. We can invest in a more complicated solution in a follow up RFE. For now I suppose `FuzzerUtils` would just not be allowed.
You can probably replace this by:
Suggestion:
if (exitCode != 0 || !output.isEmpty()) {
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/20184#discussion_r1760734794
More information about the hotspot-compiler-dev
mailing list