We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359c708 commit d62fbeaCopy full SHA for d62fbea
test/hotspot/gtest/runtime/test_os.cpp
@@ -413,7 +413,11 @@ struct NUMASwitcher {
413
#endif
414
415
#ifndef _AIX // JDK-8257041
416
-TEST_VM(os, release_multi_mappings) {
+#if defined(__APPLE__) && !defined(AARCH64) // See JDK-8267341.
417
+ TEST_VM(os, DISABLED_release_multi_mappings) {
418
+#else
419
+ TEST_VM(os, release_multi_mappings) {
420
+#endif
421
422
// With NMT enabled, this will trigger JDK-8263464. For now disable the test if NMT=on.
423
if (MemTracker::tracking_level() > NMT_off) {
0 commit comments