Merge
This commit is contained in:
commit
6dfab3f953
@ -4311,7 +4311,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
|
||||
#CUSTOM_AUTOCONF_INCLUDE
|
||||
|
||||
# Do not change or remove the following line, it is needed for consistency checks:
|
||||
DATE_WHEN_GENERATED=1403110135
|
||||
DATE_WHEN_GENERATED=1403557683
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
@ -13610,7 +13610,7 @@ test -n "$target_alias" &&
|
||||
VAR_CPU_BITS=32
|
||||
VAR_CPU_ENDIAN=big
|
||||
;;
|
||||
sparcv9)
|
||||
sparcv9|sparc64)
|
||||
VAR_CPU=sparcv9
|
||||
VAR_CPU_ARCH=sparc
|
||||
VAR_CPU_BITS=64
|
||||
@ -13741,7 +13741,7 @@ $as_echo "$OPENJDK_BUILD_OS-$OPENJDK_BUILD_CPU" >&6; }
|
||||
VAR_CPU_BITS=32
|
||||
VAR_CPU_ENDIAN=big
|
||||
;;
|
||||
sparcv9)
|
||||
sparcv9|sparc64)
|
||||
VAR_CPU=sparcv9
|
||||
VAR_CPU_ARCH=sparc
|
||||
VAR_CPU_BITS=64
|
||||
|
@ -84,7 +84,7 @@ AC_DEFUN([PLATFORM_EXTRACT_VARS_FROM_CPU],
|
||||
VAR_CPU_BITS=32
|
||||
VAR_CPU_ENDIAN=big
|
||||
;;
|
||||
sparcv9)
|
||||
sparcv9|sparc64)
|
||||
VAR_CPU=sparcv9
|
||||
VAR_CPU_ARCH=sparc
|
||||
VAR_CPU_BITS=64
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -25,9 +25,48 @@
|
||||
# questions.
|
||||
#
|
||||
|
||||
# Get clones of all nested repositories
|
||||
sh ./common/bin/hgforest.sh clone "$@" || exit 1
|
||||
# Version check
|
||||
|
||||
# required
|
||||
reqdmajor=1
|
||||
reqdminor=5
|
||||
reqdrev=0
|
||||
|
||||
# requested
|
||||
rqstmajor=2
|
||||
rqstminor=6
|
||||
rqstrev=3
|
||||
|
||||
# installed
|
||||
hgwhere="`which hg 2> /dev/null | grep -v '^no hg in '`"
|
||||
if [ "x$hgwhere" = "x" ]; then
|
||||
echo "ERROR: Could not locate Mercurial command" >&2
|
||||
exit 126
|
||||
fi
|
||||
|
||||
hgversion="`hg --version 2> /dev/null | sed -n -e 's@^Mercurial Distributed SCM (version \(.*\))\$@\1@p'`"
|
||||
if [ "x${hgversion}" = "x" ] ; then
|
||||
echo "ERROR: Could not determine Mercurial version" >&2
|
||||
exit 126
|
||||
fi
|
||||
|
||||
hgmajor="`echo $hgversion | cut -f 1 -d .`"
|
||||
hgminor="`echo $hgversion | cut -f 2 -d .`"
|
||||
hgrev="`echo $hgversion.0 | cut -f 3 -d .`" # rev is omitted for minor and major releases
|
||||
|
||||
# Require
|
||||
if [ $hgmajor -lt $reqdmajor -o \( $hgmajor -eq $reqdmajor -a $hgminor -lt $reqdminor \) -o \( $hgmajor -eq $reqdmajor -a $hgminor -eq $reqdminor -a $hgrev -lt $reqdrev \) ] ; then
|
||||
echo "ERROR: Mercurial version $reqdmajor.$reqdminor.$reqdrev or later is required. $hgwhere is version $hgversion" >&2
|
||||
exit 126
|
||||
fi
|
||||
|
||||
# Request
|
||||
if [ $hgmajor -lt $rqstmajor -o \( $hgmajor -eq $rqstmajor -a $hgminor -lt $rqstminor \) -o \( $hgmajor -eq $rqstmajor -a $hgminor -eq $rqstminor -a $hgrev -lt $rqstrev \) ] ; then
|
||||
echo "WARNING: Mercurial version $rqstmajor.$rqstminor.$rqstrev or later is recommended. $hgwhere is version $hgversion" >&2
|
||||
fi
|
||||
|
||||
# Get clones of all absent nested repositories (harmless if already exist)
|
||||
sh ./common/bin/hgforest.sh clone "$@" || exit $?
|
||||
|
||||
# Update all existing repositories to the latest sources
|
||||
sh ./common/bin/hgforest.sh pull -u
|
||||
|
||||
|
@ -118,7 +118,7 @@ DOCSDIR_URL = {@docroot}/$(GET2DOCSDIR)
|
||||
COPYRIGHT_URL = $(DOCSDIR_URL)/legal/cpyr.html
|
||||
|
||||
# Url to bug filing site
|
||||
BUG_SUBMIT_URL = http://bugreport.sun.com/bugreport/
|
||||
BUG_SUBMIT_URL = http://bugreport.java.com/bugreport/
|
||||
|
||||
# Common line for how to submit a bug or rfe
|
||||
BUG_SUBMIT_LINE = <a href="$(BUG_SUBMIT_URL)">Submit a bug or feature</a>
|
||||
@ -442,7 +442,7 @@ $(DOCLETAPI_INDEX_FILE): $(DOCLETAPI_OPTIONS_FILE) $(DOCLETAPI_PACKAGES_FILE) $(
|
||||
$(DOCLETAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
$(call OptionOnly,-breakiterator) ; \
|
||||
@ -499,7 +499,7 @@ $(TAGLETAPI_INDEX_FILE): $(TAGLETAPI_OPTIONS_FILE) $(TAGLETAPI_PACKAGES_FILE) $(
|
||||
$(TAGLETAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
$(call OptionOnly,-nonavbar) ; \
|
||||
@ -1074,7 +1074,7 @@ $(TREEAPI_INDEX_HTML): $(TREEAPI_OPTIONS_FILE) $(TREEAPI_PACKAGES_FILE) $(COREAP
|
||||
$(TREEAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
$(call OptionPair,-doctitle,$(TREEAPI_DOCTITLE)) ; \
|
||||
|
@ -39,8 +39,6 @@ EXCLUDE_PKGS = \
|
||||
org.w3c.dom.css \
|
||||
org.w3c.dom.html \
|
||||
org.w3c.dom.stylesheets \
|
||||
org.w3c.dom.traversal \
|
||||
org.w3c.dom.ranges \
|
||||
org.omg.stub.javax.management.remote.rmi
|
||||
|
||||
#
|
||||
@ -294,6 +292,8 @@ CORE_PKGS = \
|
||||
org.w3c.dom.events \
|
||||
org.w3c.dom.bootstrap \
|
||||
org.w3c.dom.ls \
|
||||
org.w3c.dom.ranges \
|
||||
org.w3c.dom.traversal \
|
||||
org.w3c.dom.views \
|
||||
org.xml.sax \
|
||||
org.xml.sax.ext \
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# Copyright (c) 2006, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
#
|
||||
# This code is free software; you can redistribute it and/or modify it
|
||||
@ -23,151 +23,458 @@
|
||||
# questions.
|
||||
#
|
||||
|
||||
# Properties for jprt
|
||||
##############
|
||||
#
|
||||
# Global settings
|
||||
#
|
||||
|
||||
# Locked down to jdk9
|
||||
# The current release name
|
||||
jprt.tools.default.release=jdk9
|
||||
|
||||
# Unix toolkit to use for building on windows
|
||||
jprt.windows.jdk8.build.unix.toolkit=cygwin
|
||||
# Check if this is the equivalent of a hotspot push job
|
||||
# Interpret -testset hotspot to mean exactly that
|
||||
my.is.hotspot.job.hotspot=true
|
||||
my.is.hotspot.job=${my.is.hotspot.job.${jprt.test.set}}
|
||||
|
||||
# The different build flavors we want, we override here so we just get these 2
|
||||
jprt.build.flavors=product,fastdebug
|
||||
|
||||
# Standard list of jprt build targets for this source tree
|
||||
jprt.build.targets= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}, \
|
||||
solaris_x64_5.11-{product|fastdebug}, \
|
||||
linux_i586_2.6-{product|fastdebug}, \
|
||||
linux_x64_2.6-{product|fastdebug}, \
|
||||
macosx_x64_10.7-{product|fastdebug}, \
|
||||
windows_i586_6.1-{product|fastdebug}, \
|
||||
windows_x64_6.1-{product|fastdebug}
|
||||
|
||||
# User can select the test set with jprt submit "-testset name" option
|
||||
jprt.my.test.set=${jprt.test.set}
|
||||
|
||||
# Test target list (no fastdebug & limited c2 testing)
|
||||
jprt.my.test.target.set= \
|
||||
solaris_sparcv9_5.11-product-c2-TESTNAME, \
|
||||
solaris_x64_5.11-product-c2-TESTNAME, \
|
||||
linux_i586_2.6-product-{c1|c2}-TESTNAME, \
|
||||
linux_x64_2.6-product-c2-TESTNAME, \
|
||||
macosx_x64_10.7-product-c2-TESTNAME, \
|
||||
windows_i586_6.1-product-c1-TESTNAME, \
|
||||
windows_x64_6.1-product-c2-TESTNAME
|
||||
|
||||
# Default vm test targets (testset=default)
|
||||
jprt.vm.default.test.targets= \
|
||||
${jprt.my.test.target.set:TESTNAME=jvm98}, \
|
||||
${jprt.my.test.target.set:TESTNAME=scimark}
|
||||
|
||||
# Default jdk test targets (testset=default)
|
||||
jprt.make.rule.default.test.targets= \
|
||||
${jprt.my.test.target.set:TESTNAME=langtools_jtreg}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_lang}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_math}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_util}
|
||||
|
||||
|
||||
# Default vm test targets (testset=core)
|
||||
jprt.vm.core.test.targets=
|
||||
|
||||
# Core jdk test targets (testset=core)
|
||||
jprt.make.rule.core.test.targets= \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_lang}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_math}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_util}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_io}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_net}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_nio}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_security1}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_security2}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_security3}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_rmi}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_text}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_time}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_other}, \
|
||||
${jprt.my.test.target.set:TESTNAME=core_tools}
|
||||
|
||||
# Svc vm test targets (testset=svc)
|
||||
jprt.vm.svc.test.targets=
|
||||
|
||||
# Core jdk test targets (testset=svc)
|
||||
jprt.make.rule.svc.test.targets= \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_management}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_instrument}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_jmx}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_jdi}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_jfr}, \
|
||||
${jprt.my.test.target.set:TESTNAME=svc_tools}
|
||||
|
||||
# All vm test targets (testset=all)
|
||||
jprt.vm.all.test.targets= \
|
||||
${jprt.vm.default.test.targets}, \
|
||||
${jprt.my.test.target.set:TESTNAME=runThese}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jbb_default}
|
||||
|
||||
# All jdk test targets (testset=all)
|
||||
jprt.make.rule.all.test.targets= \
|
||||
${jprt.make.rule.core.test.targets}, \
|
||||
${jprt.make.rule.svc.test.targets}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_awt}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_beans1}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_beans2}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_beans3}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_sound}, \
|
||||
${jprt.my.test.target.set:TESTNAME=jdk_swing}
|
||||
|
||||
# PIT vm test targets (testset=pit)
|
||||
jprt.vm.pit.test.targets= \
|
||||
${jprt.vm.all.test.targets}
|
||||
|
||||
# PIT jdk test targets (testset=pit)
|
||||
jprt.make.rule.pit.test.targets= \
|
||||
${jprt.my.test.target.set:TESTNAME=langtools_jtreg}, \
|
||||
${jprt.make.rule.core.test.targets}, \
|
||||
${jprt.make.rule.svc.test.targets}
|
||||
|
||||
# JCK test targets in test/Makefile (no windows)
|
||||
jprt.my.jck.test.target.set= \
|
||||
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
|
||||
solaris_x64_5.11-product-c2-JCK7TESTRULE, \
|
||||
linux_i586_2.6-product-c1-JCK7TESTRULE, \
|
||||
linux_x64_2.6-product-c2-JCK7TESTRULE
|
||||
|
||||
# JCK testset targets (e.g. jprt submit -testset jck ... )
|
||||
jprt.make.rule.jck.test.targets= \
|
||||
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7devtools}, \
|
||||
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7runtime}, \
|
||||
${jprt.my.jck.test.target.set:JCK7TESTRULE=jck7compiler}
|
||||
|
||||
# Select list to use (allow for testset to be empty too)
|
||||
jprt.make.rule..test.targets=${jprt.make.rule.default.test.targets}
|
||||
jprt.make.rule.test.targets=${jprt.make.rule.${jprt.my.test.set}.test.targets}
|
||||
jprt.vm..test.targets=${jprt.vm.default.test.targets}
|
||||
jprt.test.targets=${jprt.vm.${jprt.my.test.set}.test.targets}
|
||||
# Disable syncing the source after builds and tests are done
|
||||
jprt.sync.push=${my.is.hotspot.job ? false : true}
|
||||
|
||||
# Directories to be excluded from the source bundles
|
||||
jprt.bundle.exclude.src.dirs=build dist webrev
|
||||
|
||||
# Instruct jprt to use configure when building
|
||||
# Use configure when building
|
||||
jprt.build.use.configure=true
|
||||
jprt.build.flavor.product.target=jprt_bundle
|
||||
|
||||
# Set make target to use for different build flavors
|
||||
jprt.build.flavor.debugOpen.target=jprt_bundle
|
||||
jprt.build.flavor.fastdebug.target=jprt_bundle
|
||||
jprt.build.flavor.debug.target=jprt_bundle
|
||||
jprt.build.flavor.product.target=jprt_bundle
|
||||
jprt.build.flavor.productOpen.target=jprt_bundle
|
||||
|
||||
# Add these configure args to all builds
|
||||
jprt.build.configure.args= \
|
||||
--with-boot-jdk=$ALT_BOOTDIR \
|
||||
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS
|
||||
|
||||
# Add these configure args to 32 bit builds
|
||||
jprt.i586.build.configure.args= \
|
||||
--with-target-bits=32 \
|
||||
--with-jvm-variants=client,server
|
||||
|
||||
# Use these configure args to define debug level.
|
||||
jprt.product.build.configure.args=--with-debug-level=release
|
||||
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug
|
||||
# Use these configure args to define debug level
|
||||
jprt.debug.build.configure.args=--with-debug-level=slowdebug
|
||||
jprt.fastdebug.build.configure.args=--with-debug-level=fastdebug
|
||||
jprt.product.build.configure.args=--with-debug-level=release
|
||||
jprt.debugOpen.build.configure.args=${jprt.debug.build.configure.args} --enable-openjdk-only
|
||||
jprt.fastdebugOpen.build.configure.args=${jprt.fastdebug.build.configure.args} --enable-openjdk-only
|
||||
jprt.productOpen.build.configure.args=${jprt.product.build.configure.args} --enable-openjdk-only
|
||||
|
||||
# Select build flavors and build targets
|
||||
jprt.build.flavors=${my.is.hotspot.job ? ${my.build.flavors.hotspot} : ${my.build.flavors.default}}
|
||||
jprt.build.targets=${my.is.hotspot.job ? ${my.build.targets.hotspot} : ${my.build.targets.default}}
|
||||
|
||||
# Select test targets - jprt default for jprt.test.set is "default"
|
||||
jprt.test.targets=${my.test.targets.${jprt.test.set}}
|
||||
jprt.make.rule.test.targets=${my.make.rule.test.targets.${jprt.test.set}}
|
||||
|
||||
# 7155453: Work-around to prevent popups on OSX from blocking test completion
|
||||
# but the work-around is added to all platforms to be consistent
|
||||
jprt.jbb.options=-Djava.awt.headless=true
|
||||
|
||||
########
|
||||
#
|
||||
# Build options (generic)
|
||||
#
|
||||
|
||||
# Configure args common to all builds
|
||||
# Also allows for additional, testset specific configure arguments to be set
|
||||
jprt.build.configure.args= \
|
||||
--with-boot-jdk=$ALT_BOOTDIR \
|
||||
--with-jobs=$ALT_PARALLEL_COMPILE_JOBS \
|
||||
${my.additional.build.configure.args.${jprt.test.set}}
|
||||
|
||||
# i586 is often cross-compiled from 64-bit machines, so need to set target bits explicitly
|
||||
jprt.i586.build.configure.args= \
|
||||
--with-target-bits=32
|
||||
|
||||
# i586 platforms have both client and server, but to allow for overriding the exact configuration
|
||||
# on a per-build flavor basis the value is set for the individual build flavors
|
||||
my.i586.default.build.configure.args= \
|
||||
--with-jvm-variants=client,server
|
||||
jprt.i586.debug.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.debug.build.configure.args}
|
||||
jprt.i586.fastdebug.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.fastdebug.build.configure.args}
|
||||
jprt.i586.product.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.product.build.configure.args}
|
||||
jprt.i586.debugOpen.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.debugOpen.build.configure.args}
|
||||
jprt.i586.fastdebugOpen.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.fastdebugOpen.build.configure.args}
|
||||
jprt.i586.productOpen.build.configure.args= \
|
||||
${my.i586.default.build.configure.args} \
|
||||
${jprt.productOpen.build.configure.args}
|
||||
|
||||
########
|
||||
#
|
||||
# Build targets and options (default/jdk)
|
||||
#
|
||||
|
||||
# The default build flavors
|
||||
my.build.flavors.default=fastdebug,product
|
||||
|
||||
# Standard list of jprt build targets for this source tree
|
||||
my.build.targets.default= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}, \
|
||||
solaris_x64_5.11-{product|fastdebug}, \
|
||||
linux_i586_2.6-{product|fastdebug}, \
|
||||
linux_x64_2.6-{product|fastdebug}, \
|
||||
macosx_x64_10.7-{product|fastdebug}, \
|
||||
windows_i586_6.1-{product|fastdebug}, \
|
||||
windows_x64_6.1-{product|fastdebug}
|
||||
|
||||
# Test target list (no fastdebug & limited c2 testing)
|
||||
my.test.target.set= \
|
||||
solaris_sparcv9_5.11-product-c2-TESTNAME, \
|
||||
solaris_x64_5.11-product-c2-TESTNAME, \
|
||||
linux_i586_2.6-product-{c1|c2}-TESTNAME, \
|
||||
linux_x64_2.6-product-c2-TESTNAME, \
|
||||
macosx_x64_10.7-product-c2-TESTNAME, \
|
||||
windows_i586_6.1-product-c1-TESTNAME, \
|
||||
windows_x64_6.1-product-c2-TESTNAME
|
||||
|
||||
# Default vm test targets (testset=default)
|
||||
my.test.targets.default= \
|
||||
${my.test.target.set:TESTNAME=jvm98}, \
|
||||
${my.test.target.set:TESTNAME=scimark}
|
||||
|
||||
# Default jdk test targets (testset=default)
|
||||
my.make.rule.test.targets.default= \
|
||||
${my.test.target.set:TESTNAME=langtools_jtreg}, \
|
||||
${my.test.target.set:TESTNAME=jdk_lang}, \
|
||||
${my.test.target.set:TESTNAME=jdk_math}, \
|
||||
${my.test.target.set:TESTNAME=jdk_util}
|
||||
|
||||
# Default vm test targets (testset=core)
|
||||
my.test.targets.core=
|
||||
|
||||
# Core jdk test targets (testset=core)
|
||||
my.make.rule.test.targets.core= \
|
||||
${my.test.target.set:TESTNAME=jdk_lang}, \
|
||||
${my.test.target.set:TESTNAME=jdk_math}, \
|
||||
${my.test.target.set:TESTNAME=jdk_util}, \
|
||||
${my.test.target.set:TESTNAME=jdk_io}, \
|
||||
${my.test.target.set:TESTNAME=jdk_net}, \
|
||||
${my.test.target.set:TESTNAME=jdk_nio}, \
|
||||
${my.test.target.set:TESTNAME=jdk_security1}, \
|
||||
${my.test.target.set:TESTNAME=jdk_security2}, \
|
||||
${my.test.target.set:TESTNAME=jdk_security3}, \
|
||||
${my.test.target.set:TESTNAME=jdk_rmi}, \
|
||||
${my.test.target.set:TESTNAME=jdk_text}, \
|
||||
${my.test.target.set:TESTNAME=jdk_time}, \
|
||||
${my.test.target.set:TESTNAME=jdk_other}, \
|
||||
${my.test.target.set:TESTNAME=core_tools}
|
||||
|
||||
# Svc vm test targets (testset=svc)
|
||||
my.test.targets.svc=
|
||||
|
||||
# Core jdk test targets (testset=svc)
|
||||
my.make.rule.test.targets.svc= \
|
||||
${my.test.target.set:TESTNAME=jdk_management}, \
|
||||
${my.test.target.set:TESTNAME=jdk_instrument}, \
|
||||
${my.test.target.set:TESTNAME=jdk_jmx}, \
|
||||
${my.test.target.set:TESTNAME=jdk_jdi}, \
|
||||
${my.test.target.set:TESTNAME=jdk_jfr}, \
|
||||
${my.test.target.set:TESTNAME=svc_tools}
|
||||
|
||||
# All vm test targets (testset=all)
|
||||
my.test.targets.all= \
|
||||
${my.test.targets.default}, \
|
||||
${my.test.target.set:TESTNAME=runThese}, \
|
||||
${my.test.target.set:TESTNAME=jbb_default}
|
||||
|
||||
# All jdk test targets (testset=all)
|
||||
my.make.rule.test.targets.all= \
|
||||
${my.make.rule.test.targets.core}, \
|
||||
${my.make.rule.test.targets.svc}, \
|
||||
${my.test.target.set:TESTNAME=jdk_awt}, \
|
||||
${my.test.target.set:TESTNAME=jdk_beans1}, \
|
||||
${my.test.target.set:TESTNAME=jdk_beans2}, \
|
||||
${my.test.target.set:TESTNAME=jdk_beans3}, \
|
||||
${my.test.target.set:TESTNAME=jdk_sound}, \
|
||||
${my.test.target.set:TESTNAME=jdk_swing}
|
||||
|
||||
# PIT vm test targets (testset=pit)
|
||||
my.test.targets.pit= \
|
||||
${my.test.targets.all}
|
||||
|
||||
# PIT jdk test targets (testset=pit)
|
||||
my.make.rule.test.targets.pit= \
|
||||
${my.test.target.set:TESTNAME=langtools_jtreg}, \
|
||||
${my.make.rule.test.targets.core}, \
|
||||
${my.make.rule.test.targets.svc}
|
||||
|
||||
# JCK test targets in test/Makefile (no windows)
|
||||
my.test.target.set.jck= \
|
||||
solaris_sparcv9_5.11-product-c2-JCK7TESTRULE, \
|
||||
solaris_x64_5.11-product-c2-JCK7TESTRULE, \
|
||||
linux_i586_2.6-product-c1-JCK7TESTRULE, \
|
||||
linux_x64_2.6-product-c2-JCK7TESTRULE
|
||||
|
||||
# JCK testset targets
|
||||
my.make.rule.test.targets.jck= \
|
||||
${my.test.target.set.jck:JCK7TESTRULE=jck7devtools}, \
|
||||
${my.test.target.set.jck:JCK7TESTRULE=jck7runtime}, \
|
||||
${my.test.target.set.jck:JCK7TESTRULE=jck7compiler}
|
||||
|
||||
|
||||
#############
|
||||
#
|
||||
# Hotspot related settings (testset=hotspot)
|
||||
#
|
||||
|
||||
# The hotspot build flavors
|
||||
my.build.flavors.hotspot= \
|
||||
debugOpen,fastdebug,product,productOpen, \
|
||||
${my.additional.build.flavors.hotspot}
|
||||
|
||||
# Platforms built for hotspot push jobs
|
||||
my.build.targets.hotspot= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug|optimized}, \
|
||||
solaris_x64_5.11-{product|fastdebug}, \
|
||||
linux_i586_2.6-{product|fastdebug}, \
|
||||
linux_x64_2.6-{product|fastdebug|optimized}, \
|
||||
macosx_x64_10.7-{product|fastdebug}, \
|
||||
windows_i586_6.1-{product|fastdebug}, \
|
||||
windows_x64_6.1-{product|fastdebug|optimized}, \
|
||||
solaris_x64_5.11-{debugOpen}, \
|
||||
linux_x64_2.6-{productOpen}, \
|
||||
${my.additional.build.targets.hotspot}
|
||||
|
||||
# Tests to run on the various platforms for hotspot push jobs
|
||||
my.test.targets.hotspot.solaris.sparcv9= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-scimark, \
|
||||
solaris_sparcv9_5.11-product-c2-runThese, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParNewGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_G1, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_SerialGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParNewGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_G1, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GCOld_ParOldGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_CMS, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_G1, \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-jbb_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.solaris.x64= \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-jvm98, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-scimark, \
|
||||
solaris_x64_5.11-product-c2-runThese, \
|
||||
solaris_x64_5.11-product-c2-runThese_Xcomp, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_SerialGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParallelGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParNewGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_CMS, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_G1, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCBasher_ParOldGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_SerialGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParallelGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParNewGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-jbb_SerialGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-jbb_ParallelGC, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_G1, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GCOld_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.linux.i586= \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-jvm98, \
|
||||
linux_i586_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-scimark, \
|
||||
linux_i586_2.6-product-c1-runThese_Xcomp, \
|
||||
linux_i586_2.6-fastdebug-c1-runThese_Xshare, \
|
||||
linux_i586_2.6-fastdebug-c2-runThese_Xcomp, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
|
||||
linux_i586_2.6-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_SerialGC, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_ParallelGC, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_ParNewGC, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_CMS, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_G1, \
|
||||
linux_i586_2.6-product-{c1|c2}-GCOld_ParOldGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-jbb_SerialGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParallelGC, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-jbb_CMS, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-jbb_G1, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-jbb_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.linux.x64= \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jvm98, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-scimark, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_SerialGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParallelGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParNewGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_CMS, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_G1, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCBasher_ParOldGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_SerialGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParallelGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParNewGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_G1, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GCOld_ParOldGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParallelGC, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jbb_G1, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-jbb_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.macosx.x64= \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jvm98, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-scimark, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_SerialGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParallelGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParNewGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_CMS, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_G1, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCBasher_ParOldGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_SerialGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParallelGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParNewGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_G1, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-GCOld_ParOldGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParallelGC, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jbb_G1, \
|
||||
macosx_x64_10.7-{product|fastdebug}-c2-jbb_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.windows.i586= \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-jvm98, \
|
||||
windows_i586_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-scimark, \
|
||||
windows_i586_6.1-product-{c1|c2}-runThese, \
|
||||
windows_i586_6.1-product-{c1|c2}-runThese_Xcomp, \
|
||||
windows_i586_6.1-fastdebug-c1-runThese_Xshare, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_SerialGC, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParallelGC, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParNewGC, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_CMS, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_G1, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-GCBasher_ParOldGC, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_SerialGC, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_ParallelGC, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_ParNewGC, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_CMS, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_G1, \
|
||||
windows_i586_6.1-product-{c1|c2}-GCOld_ParOldGC, \
|
||||
windows_i586_6.1-{product|fastdebug}-{c1|c2}-jbb_default, \
|
||||
windows_i586_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
windows_i586_6.1-product-{c1|c2}-jbb_ParallelGC, \
|
||||
windows_i586_6.1-product-{c1|c2}-jbb_CMS, \
|
||||
windows_i586_6.1-product-{c1|c2}-jbb_G1, \
|
||||
windows_i586_6.1-product-{c1|c2}-jbb_ParOldGC
|
||||
|
||||
my.test.targets.hotspot.windows.x64= \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-jvm98, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-jvm98_nontiered, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-scimark, \
|
||||
windows_x64_6.1-product-c2-runThese, \
|
||||
windows_x64_6.1-product-c2-runThese_Xcomp, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_SerialGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParallelGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParNewGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_CMS, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_G1, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCBasher_ParOldGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_SerialGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParallelGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParNewGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_CMS, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_G1, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GCOld_ParOldGC, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-jbb_default, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-jbb_default_nontiered, \
|
||||
windows_x64_6.1-product-c2-jbb_CMS, \
|
||||
windows_x64_6.1-product-c2-jbb_ParallelGC, \
|
||||
windows_x64_6.1-product-c2-jbb_G1, \
|
||||
windows_x64_6.1-product-c2-jbb_ParOldGC
|
||||
|
||||
# Some basic "smoke" tests for OpenJDK builds
|
||||
my.test.targets.hotspot.open= \
|
||||
solaris_x64_5.11-{productOpen|fastdebugOpen}-c2-jvm98, \
|
||||
linux_x64_2.6-{productOpen|fastdebugOpen}-c2-jvm98
|
||||
|
||||
# The complete list of test targets for jprt
|
||||
my.test.targets.hotspot= \
|
||||
${my.test.targets.hotspot.open}, \
|
||||
${my.test.targets.hotspot.solaris.sparcv9}, \
|
||||
${my.test.targets.hotspot.solaris.x64}, \
|
||||
${my.test.targets.hotspot.linux.i586}, \
|
||||
${my.test.targets.hotspot.linux.x64}, \
|
||||
${my.test.targets.hotspot.macosx.x64}, \
|
||||
${my.test.targets.hotspot.windows.i586}, \
|
||||
${my.test.targets.hotspot.windows.x64}, \
|
||||
${my.test.targets.hotspot.solaris.sparcv9}, \
|
||||
${my.test.targets.hotspot.solaris.x64}, \
|
||||
${my.test.targets.hotspot.linux.x64}, \
|
||||
${my.test.targets.hotspot.windows.i586}, \
|
||||
${my.test.targets.hotspot.windows.x64}, \
|
||||
${my.additional.test.targets.hotspot}
|
||||
|
||||
|
||||
# Make file based test targets
|
||||
|
||||
my.make.rule.test.targets.hotspot.clienttests= \
|
||||
linux_i586_2.6-*-c1-hotspot_clienttest, \
|
||||
windows_i586_6.1-*-c1-hotspot_clienttest
|
||||
|
||||
my.make.rule.test.targets.hotspot.servertests= \
|
||||
solaris_sparcv9_5.11-*-c2-hotspot_servertest, \
|
||||
solaris_x64_5.11-*-c2-hotspot_servertest, \
|
||||
linux_i586_2.6-*-c2-hotspot_servertest, \
|
||||
linux_x64_2.6-*-c2-hotspot_servertest, \
|
||||
macosx_x64_10.7-*-c2-hotspot_servertest, \
|
||||
windows_i586_6.1-*-c2-hotspot_servertest, \
|
||||
windows_x64_6.1-*-c2-hotspot_servertest
|
||||
|
||||
my.make.rule.test.targets.hotspot.internalvmtests= \
|
||||
solaris_sparcv9_5.11-fastdebug-c2-hotspot_internalvmtests, \
|
||||
solaris_x64_5.11-fastdebug-c2-hotspot_internalvmtests, \
|
||||
linux_i586_2.6-fastdebug-c2-hotspot_internalvmtests, \
|
||||
linux_x64_2.6-fastdebug-c2-hotspot_internalvmtests, \
|
||||
macosx_x64_10.7-fastdebug-c2-hotspot_internalvmtests, \
|
||||
windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
|
||||
windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
|
||||
|
||||
my.make.rule.test.targets.hotspot.wbapitests= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_i586_2.6-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
windows_i586_6.1-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-hotspot_wbapitest, \
|
||||
windows_i586_6.1-{product|fastdebug}-c1-hotspot_wbapitest
|
||||
|
||||
my.make.rule.test.targets.hotspot= \
|
||||
${my.make.rule.test.targets.hotspot.clienttests}, \
|
||||
${my.make.rule.test.targets.hotspot.servertests}, \
|
||||
${my.make.rule.test.targets.hotspot.internalvmtests}, \
|
||||
${my.make.rule.test.targets.hotspot.wbapitests}, \
|
||||
${my.additional.make.rule.test.targets.hotspot}
|
||||
|
Loading…
x
Reference in New Issue
Block a user