RFR: 8254042: gtest/GTestWrapper.java failed os.test_random [v2]

David Holmes dholmes at openjdk.java.net
Fri Nov 27 01:02:03 UTC 2020


On Wed, 25 Nov 2020 17:23:10 GMT, Coleen Phillimore <coleenp at openjdk.org> wrote:

>> The function os::init_random() and os::random() both set the _rand_seed. This test thinks nothing can change the seed while it is computing its expected value.
>> I changed the test to run in a VM operation safepoint.  Alternately, I can change the test to not verify the random value computed in the loop, or remove the test.
>> Ran tier1 tests on linux-x64 and windows-x64.
>
> Coleen Phillimore has updated the pull request incrementally with two additional commits since the last revision:
> 
>  - Restore old copyright
>  - Refix os.random test using Thomas Stuefe's better suggestion.

Marked as reviewed by dholmes (Reviewer).

test/hotspot/gtest/runtime/test_os.cpp line 125:

> 123:   int num;
> 124:   for (int k = 0; k < reps; k++) {
> 125:     num = seed = os::next_random(seed);

I suggest adding a comment before this line:
// Use next_random so the calculation is stateless.
Or something to that affect.

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

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


More information about the hotspot-dev mailing list