8331675: gtest CollectorPolicy.young_min_ergo_vm fails after 8272364

Reviewed-by: tschatzl, zgu, gli
This commit is contained in:
Albert Mingkun Yang 2024-06-11 06:57:05 +00:00
parent 4d6064a760
commit badf1cb9ce

View File

@ -212,18 +212,6 @@ class TestGenCollectorPolicy {
// depends on so many other configurable variables. These tests only try to
// verify that there are some basic rules for NewSize honored by the policies.
// If NewSize has been ergonomically set, the collector policy
// should use it for min
// This test doesn't work with 64k pages. See JDK-8331675.
#if !defined(PPC)
TEST_VM(CollectorPolicy, young_min_ergo) {
TestGenCollectorPolicy::SetNewSizeErgo setter(20 * M);
TestGenCollectorPolicy::CheckYoungMin checker(20 * M);
TestGenCollectorPolicy::TestWrapper::test(&setter, &checker);
}
#endif
// If NewSize has been ergonomically set, the collector policy
// should use it for min but calculate the initial young size
// using NewRatio.