RFR: 8273361: InfoOptsTest is failing in tier1 [v2]

Magnus Ihse Bursie ihse at openjdk.java.net
Wed Sep 8 12:45:10 UTC 2021


On Wed, 8 Sep 2021 09:41:37 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:

>> Current test checks that informational messages are not printed twice. The failing tests verifies that by checking `java.specification.version` is not present twice in the version string. Effectively, it searches for `18`. But a second `18` could get to version string from anywhere: the Git hash, the user name, etc. It is failing in current GHA due to Git hash containing `18`.
>> 
>> I believe the test should be more conservative: look for more unique strings, and check that the lines start with it. "javac" and "javac full version" seem unique enough. Checking that lines start with "javac" handles the case of accidental version strings that includes that string (think username that includes "javac" for some reason, who are we to judge...).
>> 
>> Additional testing:
>>  - [x] Affected test passes with default version string
>>  - [x] Affected test fails with JDK-8266239 reverted
>>  - [x] Affected test passes with `--with-version-opt=javac`
>
> Aleksey Shipilev has updated the pull request incrementally with two additional commits since the last revision:
> 
>  - No need for Scanner import anymore
>  - Do the duplicate checks instead of checking for particular strings

Marked as reviewed by ihse (Reviewer).

-------------

PR: https://git.openjdk.java.net/jdk/pull/5381


More information about the compiler-dev mailing list