RFR: JDK-8301163: jdk/internal/vm/Continuation/Fuzz.java increase COMPILATION_TIMEOUT for Linux ppc64le [v2]
Richard Reingruber
rrich at openjdk.org
Fri Jan 27 10:23:21 UTC 2023
On Fri, 27 Jan 2023 10:16:56 GMT, Matthias Baesken <mbaesken at openjdk.org> wrote:
>> test/jdk/jdk/internal/vm/Continuation/Fuzz.java line 95:
>>
>>> 93: }
>>> 94: if (Platform.isPPC()) {
>>> 95: COMPILATION_TIMEOUT = COMPILATION_TIMEOUT * 2;
>>
>> I guess this won't compile. COMPILATION_TIMEOUT is final.
>
> Yes correct, it cannot be final any more.
Well it could be final if you would add `(Platform.isPPC() ? 2 : 1) * ...` to the initialization. But I'm indifferent.
-------------
PR: https://git.openjdk.org/jdk/pull/12244
More information about the core-libs-dev
mailing list