We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 487c477 commit 9b436d0Copy full SHA for 9b436d0
test/hotspot/gtest/gc/shared/test_collectorPolicy.cpp
@@ -214,12 +214,15 @@ class TestGenCollectorPolicy {
214
215
// If NewSize has been ergonomically set, the collector policy
216
// should use it for min
217
+// This test doesn't work with 64k pages. See JDK-8331675.
218
+#if !defined(PPC)
219
TEST_VM(CollectorPolicy, young_min_ergo) {
220
TestGenCollectorPolicy::SetNewSizeErgo setter(20 * M);
221
TestGenCollectorPolicy::CheckYoungMin checker(20 * M);
222
223
TestGenCollectorPolicy::TestWrapper::test(&setter, &checker);
224
}
225
+#endif
226
227
228
// should use it for min but calculate the initial young size
0 commit comments