Skip to content

Commit d62fbea

Browse files
author
Daniel D. Daugherty
committed
8271898: disable os.release_multi_mappings_vm on macOS-X64
Reviewed-by: kbarrett
1 parent 359c708 commit d62fbea

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/hotspot/gtest/runtime/test_os.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,11 @@ struct NUMASwitcher {
413413
#endif
414414

415415
#ifndef _AIX // JDK-8257041
416-
TEST_VM(os, release_multi_mappings) {
416+
#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
417421

418422
// With NMT enabled, this will trigger JDK-8263464. For now disable the test if NMT=on.
419423
if (MemTracker::tracking_level() > NMT_off) {

0 commit comments

Comments
 (0)