Skip to content

Commit 25f1b76

Browse files
committed
Merging master into JDK-8262891
2 parents 0875377 + 083416d commit 25f1b76

File tree

2,119 files changed

+27226
-22565
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,119 files changed

+27226
-22565
lines changed

make/RunTests.gmk

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,8 +258,6 @@ langtools_JTREG_PROBLEM_LIST += $(TOPDIR)/test/langtools/ProblemList.txt
258258
hotspot_JTREG_PROBLEM_LIST += $(TOPDIR)/test/hotspot/jtreg/ProblemList.txt
259259
lib-test_JTREG_PROBLEM_LIST += $(TOPDIR)/test/lib-test/ProblemList.txt
260260

261-
langtools_JTREG_MAX_MEM := 768m
262-
263261
################################################################################
264262
# Parse test selection
265263
#
@@ -722,7 +720,7 @@ define SetupRunJtregTestBody
722720
# Convert JTREG_foo into $1_JTREG_foo with a suitable value.
723721
$$(eval $$(call SetJtregValue,$1,JTREG_TEST_MODE,agentvm))
724722
$$(eval $$(call SetJtregValue,$1,JTREG_ASSERT,true))
725-
$$(eval $$(call SetJtregValue,$1,JTREG_MAX_MEM,512m))
723+
$$(eval $$(call SetJtregValue,$1,JTREG_MAX_MEM,768m))
726724
$$(eval $$(call SetJtregValue,$1,JTREG_NATIVEPATH))
727725
$$(eval $$(call SetJtregValue,$1,JTREG_BASIC_OPTIONS))
728726
$$(eval $$(call SetJtregValue,$1,JTREG_PROBLEM_LIST))
@@ -738,7 +736,7 @@ define SetupRunJtregTestBody
738736

739737
# Make sure MaxRAMPercentage is high enough to not cause OOM or swapping since
740738
# we may end up with a lot of JVM's
741-
$1_JTREG_MAX_RAM_PERCENTAGE := $$(shell $$(EXPR) 25 / $$($1_JTREG_JOBS))
739+
$1_JTREG_MAX_RAM_PERCENTAGE := $$(shell $(AWK) 'BEGIN { print 25 / $$($1_JTREG_JOBS); }')
742740

743741
JTREG_TIMEOUT_FACTOR ?= 4
744742

make/common/Modules.gmk

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,10 @@ endif
6262
# Filter out jvmci specific modules if jvmci is disabled
6363
ifeq ($(INCLUDE_JVMCI), false)
6464
MODULES_FILTER += jdk.internal.vm.ci
65+
MODULES_FILTER += jdk.internal.vm.compiler
66+
MODULES_FILTER += jdk.internal.vm.compiler.management
6567
endif
6668

67-
# Filter out Graal specific modules
68-
MODULES_FILTER += jdk.internal.vm.compiler
69-
MODULES_FILTER += jdk.internal.vm.compiler.management
70-
7169
# jpackage is only on windows, macosx, and linux
7270
ifeq ($(call isTargetOs, windows macosx linux), false)
7371
MODULES_FILTER += jdk.jpackage

make/conf/module-loader-map.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ BOOT_MODULES= \
6161
# should carefully be considered if it should be upgradeable or not.
6262
UPGRADEABLE_PLATFORM_MODULES= \
6363
java.compiler \
64+
jdk.internal.vm.compiler \
65+
jdk.internal.vm.compiler.management \
6466
#
6567

6668
PLATFORM_MODULES= \

0 commit comments

Comments
 (0)