Makefile revision 2362
0N/A#
1472N/A# Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
1472N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1472N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
0N/A
0N/A#
0N/A# Makefile to run various jdk tests
0N/A#
0N/A
0N/A# Empty these to get rid of some default rules
0N/A.SUFFIXES:
0N/A.SUFFIXES: .java
0N/ACO=
0N/AGET=
0N/A
0N/A# Utilities used
0N/AAWK = awk
0N/ACAT = cat
0N/ACD = cd
0N/ACP = cp
0N/ACUT = cut
0N/AECHO = echo
0N/AEGREP = egrep
0N/AEXPAND = expand
0N/AMKDIR = mkdir
0N/APWD = pwd
0N/ASED = sed
0N/ASORT = sort
0N/ATEE = tee
0N/AUNAME = uname
0N/AUNIQ = uniq
0N/AWC = wc
0N/AZIP = zip
0N/A
0N/A# Get OS name from uname
0N/AUNAME_S := $(shell $(UNAME) -s)
0N/A
0N/A# Commands to run on paths to make mixed paths for java on windows
0N/AGETMIXEDPATH=$(ECHO)
0N/A
0N/A# Location of developer shared files
0N/ASLASH_JAVA = /java
0N/A
0N/A# Platform specific settings
0N/Aifeq ($(UNAME_S), SunOS)
0N/A OS_NAME = solaris
0N/A OS_ARCH := $(shell $(UNAME) -p)
0N/A OS_VERSION := $(shell $(UNAME) -r)
0N/Aendif
0N/Aifeq ($(UNAME_S), Linux)
0N/A OS_NAME = linux
0N/A OS_ARCH := $(shell $(UNAME) -m)
0N/A # Check for unknown arch, try uname -p if uname -m says unknown
0N/A ifeq ($(OS_ARCH),unknown)
0N/A OS_ARCH := $(shell $(UNAME) -p)
0N/A endif
0N/A OS_VERSION := $(shell $(UNAME) -r)
0N/Aendif
0N/Aifndef OS_NAME
0N/A ifneq ($(PROCESSOR_IDENTIFIER), )
0N/A OS_NAME = windows
0N/A SLASH_JAVA = J:
0N/A # A variety of ways to say X64 arch :^(
0N/A OS_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER))
0N/A EXESUFFIX = .exe
417N/A # These need to be different depending on MKS or CYGWIN
417N/A ifeq ($(findstring cygdrive,$(shell ($(CD) C:/ && $(PWD)))), )
0N/A GETMIXEDPATH = dosname -s
417N/A OS_VERSION := $(shell $(UNAME) -r)
0N/A else
417N/A GETMIXEDPATH = cygpath -m -s
0N/A OS_VERSION := $(shell $(UNAME) -s | $(CUT) -d'-' -f2)
0N/A endif
0N/A endif
0N/Aendif
0N/A
0N/A# Only want major and minor numbers from os version
0N/AOS_VERSION := $(shell $(ECHO) "$(OS_VERSION)" | $(CUT) -d'.' -f1,2)
0N/A
0N/A# Name to use for x86_64 arch (historically amd64, but should change someday)
0N/AOS_ARCH_X64_NAME:=amd64
0N/A#OS_ARCH_X64_NAME:=x64
0N/A
0N/A# Alternate arch names (in case this arch is known by a second name)
0N/A# PROBLEM_LISTS may use either name.
0N/AOS_ARCH2-amd64:=x64
0N/A#OS_ARCH2-x64:=amd64
0N/A
0N/A# Try and use the arch names consistently
1204N/AOS_ARCH:=$(subst x64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
1204N/AOS_ARCH:=$(subst X64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
1204N/AOS_ARCH:=$(subst AMD64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
1204N/AOS_ARCH:=$(subst amd64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
1204N/AOS_ARCH:=$(subst x86_64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst EM64T,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst em64t,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst Intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst INTEL64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
0N/AOS_ARCH:=$(subst IA64,ia64,$(OS_ARCH))
0N/AOS_ARCH:=$(subst X86,i586,$(OS_ARCH))
0N/AOS_ARCH:=$(subst x86,i586,$(OS_ARCH))
0N/AOS_ARCH:=$(subst i386,i586,$(OS_ARCH))
0N/AOS_ARCH:=$(subst i486,i586,$(OS_ARCH))
0N/AOS_ARCH:=$(subst i686,i586,$(OS_ARCH))
0N/A
0N/A# Default ARCH_DATA_MODEL settings
0N/AARCH_DATA_MODEL-i586 = 32
0N/AARCH_DATA_MODEL-$(OS_ARCH_X64_NAME) = 64
0N/AARCH_DATA_MODEL-ia64 = 64
0N/AARCH_DATA_MODEL-sparc = 32
0N/AARCH_DATA_MODEL-sparcv9 = 64
0N/A
0N/A# If ARCH_DATA_MODEL is not defined, try and pick a reasonable default
0N/Aifndef ARCH_DATA_MODEL
0N/A ARCH_DATA_MODEL:=$(ARCH_DATA_MODEL-$(OS_ARCH))
0N/Aendif
0N/Aifndef ARCH_DATA_MODEL
0N/A ARCH_DATA_MODEL=32
0N/Aendif
0N/A
0N/A# Platform directory name
0N/APLATFORM_OS = $(OS_NAME)-$(OS_ARCH)
0N/A
0N/A# Check ARCH_DATA_MODEL, adjust OS_ARCH accordingly on solaris
0N/AARCH_DATA_MODEL_ERROR= \
0N/A ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) cannot be used with $(PLATFORM_OS)
0N/Aifeq ($(ARCH_DATA_MODEL),64)
0N/A ifeq ($(PLATFORM_OS),solaris-i586)
0N/A OS_ARCH=$(OS_ARCH_X64_NAME)
0N/A endif
0N/A ifeq ($(PLATFORM_OS),solaris-sparc)
0N/A OS_ARCH=sparcv9
0N/A endif
0N/A ifeq ($(OS_ARCH),i586)
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/A ifeq ($(OS_ARCH),sparc)
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/Aelse
0N/A ifeq ($(ARCH_DATA_MODEL),32)
0N/A ifeq ($(OS_ARCH),$(OS_ARCH_X64_NAME))
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/A ifeq ($(OS_ARCH),ia64)
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/A ifeq ($(OS_ARCH),sparcv9)
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/A else
0N/A x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
0N/A endif
0N/Aendif
0N/A
0N/A# Alternate OS_ARCH name (defaults to OS_ARCH)
0N/AOS_ARCH2:=$(OS_ARCH2-$(OS_ARCH))
0N/Aifeq ($(OS_ARCH2),)
0N/A OS_ARCH2:=$(OS_ARCH)
0N/Aendif
0N/A
0N/A# Root of this test area (important to use full paths in some places)
0N/ATEST_ROOT := $(shell $(PWD))
0N/A
0N/A# Root of all test results
0N/Aifdef ALT_OUTPUTDIR
0N/A ABS_OUTPUTDIR = $(ALT_OUTPUTDIR)
0N/Aelse
0N/A ABS_OUTPUTDIR = $(TEST_ROOT)/../build/$(PLATFORM_OS)
0N/Aendif
0N/AABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
0N/AABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
0N/A
0N/A# Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
0N/Aifndef PRODUCT_HOME
0N/A # Try to use j2sdk-image if it exists
0N/A ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/j2sdk-image
0N/A PRODUCT_HOME := \
0N/A $(shell \
0N/A if [ -d $(ABS_JDK_IMAGE) ] ; then \
0N/A $(ECHO) "$(ABS_JDK_IMAGE)"; \
0N/A else \
0N/A $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)"; \
0N/A fi)
0N/A PRODUCT_HOME := $(PRODUCT_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_PRODUCT_ARGS (e.g. -server etc.)
0N/A# Should be passed into 'java' only.
0N/A# Could include: -d64 -server -client OR any java option
0N/Aifdef JPRT_PRODUCT_ARGS
0N/A JAVA_ARGS = $(JPRT_PRODUCT_ARGS)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_PRODUCT_VM_ARGS (e.g. -Xcomp etc.)
0N/A# Should be passed into anything running the vm (java, javac, javadoc, ...).
0N/Aifdef JPRT_PRODUCT_VM_ARGS
0N/A JAVA_VM_ARGS = $(JPRT_PRODUCT_VM_ARGS)
0N/Aendif
0N/A
0N/A# Check JAVA_ARGS arguments based on ARCH_DATA_MODEL etc.
0N/Aifeq ($(OS_NAME),solaris)
0N/A D64_ERROR_MESSAGE=Mismatch between ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) and use of -d64 in JAVA_ARGS=$(JAVA_ARGS)
0N/A ifeq ($(ARCH_DATA_MODEL),32)
0N/A ifneq ($(findstring -d64,$(JAVA_ARGS)),)
0N/A x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
0N/A endif
0N/A endif
0N/A ifeq ($(ARCH_DATA_MODEL),64)
0N/A ifeq ($(findstring -d64,$(JAVA_ARGS)),)
0N/A x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
0N/A endif
0N/A endif
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_ARCHIVE_BUNDLE (path to zip bundle for results)
0N/AARCHIVE_BUNDLE = $(ABS_TEST_OUTPUT_DIR)/ARCHIVE_BUNDLE.zip
0N/Aifdef JPRT_ARCHIVE_BUNDLE
0N/A ARCHIVE_BUNDLE = $(JPRT_ARCHIVE_BUNDLE)
0N/Aendif
0N/A
0N/A# How to create the test bundle (pass or fail, we want to create this)
0N/A# Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
0N/AZIP_UP_RESULTS = ( $(MKDIR) -p `dirname $(ARCHIVE_BUNDLE)` \
0N/A && $(CD) $(ABS_TEST_OUTPUT_DIR) \
0N/A && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
0N/ASUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport/text/summary.txt
0N/ASTATS_TXT_NAME = Stats.txt
0N/ASTATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/$(STATS_TXT_NAME)
0N/ARUNLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/runlist.txt
0N/APASSLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/passlist.txt
0N/AFAILLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/faillist.txt
0N/AEXITCODE = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/exitcode.txt
0N/A
0N/ATESTEXIT = \
0N/A if [ ! -s $(EXITCODE) ] ; then \
0N/A $(ECHO) "ERROR: EXITCODE file not filled in."; \
0N/A $(ECHO) "1" > $(EXITCODE); \
0N/A fi ; \
0N/A testExitCode=`$(CAT) $(EXITCODE)`; \
0N/A $(ECHO) "EXIT CODE: $${testExitCode}"; \
0N/A exit $${testExitCode}
0N/A
0N/ABUNDLE_UP_AND_EXIT = \
0N/A( \
0N/A jtregExitCode=$$? && \
0N/A _summary="$(SUMMARY_TXT)"; \
0N/A $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
0N/A $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
0N/A if [ -r "$${_summary}" ] ; then \
0N/A $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
0N/A $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
0N/A $(EGREP) ' Passed\.' $(RUNLIST) \
0N/A | $(EGREP) -v ' Error\.' \
1204N/A | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
1204N/A ( $(EGREP) ' Failed\.' $(RUNLIST); \
1204N/A $(EGREP) ' Error\.' $(RUNLIST); \
1204N/A $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
1204N/A | $(SORT) | $(UNIQ) > $(FAILLIST); \
1204N/A if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
0N/A $(EXPAND) $(FAILLIST) \
0N/A | $(CUT) -d' ' -f1 \
0N/A | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
1204N/A if [ $${jtregExitCode} = 0 ] ; then \
0N/A jtregExitCode=1; \
0N/A fi; \
0N/A fi; \
0N/A runc="`$(CAT) $(RUNLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
0N/A passc="`$(CAT) $(PASSLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
0N/A failc="`$(CAT) $(FAILLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
0N/A exclc="`$(CAT) $(EXCLUDELIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
0N/A $(ECHO) "TEST STATS: run=$${runc} pass=$${passc} fail=$${failc} excluded=$${exclc}" \
0N/A >> $(STATS_TXT); \
0N/A else \
0N/A $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
0N/A fi; \
0N/A $(CAT) $(STATS_TXT); \
0N/A $(ZIP_UP_RESULTS) ; \
0N/A $(TESTEXIT) \
0N/A)
0N/A
0N/A################################################################
0N/A
0N/A# Default make rule (runs jtreg_tests)
0N/Aall: jtreg_tests
0N/A @$(ECHO) "Testing completed successfully"
0N/A
0N/A# Prep for output
0N/Aprep: clean
0N/A @$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
0N/A @$(MKDIR) -p `dirname $(ARCHIVE_BUNDLE)`
0N/A
0N/A# Cleanup
0N/Aclean:
0N/A $(RM) -r $(ABS_TEST_OUTPUT_DIR)
0N/A $(RM) $(ARCHIVE_BUNDLE)
0N/A
0N/A################################################################
0N/A
0N/A# jtreg tests
0N/A
0N/A# Expect JT_HOME to be set for jtreg tests. (home for jtreg)
0N/Aifndef JT_HOME
0N/A JT_HOME = $(SLASH_JAVA)/re/jtreg/4.0/promoted/latest/binaries/jtreg
0N/A ifdef JPRT_JTREG_HOME
0N/A JT_HOME = $(JPRT_JTREG_HOME)
0N/A endif
0N/Aendif
0N/A
0N/A# Expect JPRT to set TESTDIRS to the jtreg test dirs
0N/Aifndef TESTDIRS
0N/A TESTDIRS = demo
0N/Aendif
0N/A
0N/A# Samevm settings (default is false)
0N/Aifndef USE_JTREG_SAMEVM
0N/A USE_JTREG_SAMEVM=false
0N/Aendif
0N/A# With samevm, you cannot use -javaoptions?
0N/Aifeq ($(USE_JTREG_SAMEVM),true)
0N/A JTREG_SAMEVM_OPTION = -samevm
0N/A EXTRA_JTREG_OPTIONS += $(JTREG_SAMEVM_OPTION) $(JAVA_ARGS) $(JAVA_ARGS:%=-vmoption:%)
0N/A JTREG_TEST_OPTIONS = $(JAVA_VM_ARGS:%=-vmoption:%)
0N/Aelse
0N/A JTREG_TEST_OPTIONS = $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
0N/Aendif
0N/A
0N/A# Some tests annoy me and fail frequently
0N/APROBLEM_LIST=ProblemList.txt
0N/APROBLEM_LISTS=$(PROBLEM_LIST) $(wildcard closed/$(PROBLEM_LIST))
0N/AEXCLUDELIST=$(ABS_TEST_OUTPUT_DIR)/excludelist.txt
0N/A
0N/A# Create exclude list for this platform and arch
0N/Aifdef NO_EXCLUDES
0N/A$(EXCLUDELIST): $(PROBLEM_LISTS) $(TESTDIRS)
0N/A @$(ECHO) "NOTHING_EXCLUDED" > $@
0N/Aelse
0N/A$(EXCLUDELIST): $(PROBLEM_LISTS) $(TESTDIRS)
0N/A @$(RM) $@ $@.temp1 $@.temp2
0N/A @(($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-all' ) ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH)' ) ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH2)' ) ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_VERSION)') ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH)' ) ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH2)' ) ;\
0N/A ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-all' ) ;\
0N/A ($(ECHO) "#") ;\
0N/A ) | $(SED) -e 's@^[\ ]*@@' \
0N/A | $(EGREP) -v '^#' > $@.temp1
0N/A @for tdir in $(TESTDIRS) ; do \
0N/A ( ( $(CAT) $@.temp1 | $(EGREP) "^$${tdir}" ) ; $(ECHO) "#" ) >> $@.temp2 ; \
0N/A done
0N/A @$(ECHO) "# at least one line" >> $@.temp2
0N/A @( $(EGREP) -v '^#' $@.temp2 ; true ) > $@
0N/A @$(ECHO) "Excluding list contains `$(EXPAND) $@ | $(WC) -l` items"
0N/Aendif
0N/A
0N/A# Select list of directories that exist
0N/Adefine TestDirs
0N/A$(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
0N/Aendef
0N/A# Running batches of tests with or without samevm
0N/Adefine RunSamevmBatch
0N/A$(ECHO) "Running tests in samevm mode: $(call TestDirs, $?)"
0N/A$(MAKE) TESTDIRS="$(call TestDirs, $?)" USE_JTREG_SAMEVM=true UNIQUE_DIR=$@ jtreg_tests
0N/Aendef
0N/Adefine RunOthervmBatch
0N/A$(ECHO) "Running tests in othervm mode: $(call TestDirs, $?)"
0N/A$(MAKE) TESTDIRS="$(call TestDirs, $?)" USE_JTREG_SAMEVM=false UNIQUE_DIR=$@ jtreg_tests
0N/Aendef
0N/Adefine SummaryInfo
0N/A$(ECHO) "########################################################"
0N/A$(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
0N/A$(ECHO) "########################################################"
0N/Aendef
0N/A
0N/A# ------------------------------------------------------------------
0N/A
0N/A# Batches of tests (somewhat arbitrary assigments to jdk_* targets)
0N/AJDK_ALL_TARGETS =
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has problems, and doesn't help performance as much as others.
0N/AJDK_ALL_TARGETS += jdk_awt
0N/Ajdk_awt: com/sun/awt java/awt sun/awt
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_beans1
0N/Ajdk_beans1: java/beans/beancontext java/beans/PropertyChangeSupport \
0N/A java/beans/Introspector java/beans/Performance \
0N/A java/beans/VetoableChangeSupport java/beans/Statement
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_beans2
0N/Ajdk_beans2: java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
0N/A java/beans/PropertyEditor
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_beans3
0N/Ajdk_beans3: java/beans/XMLEncoder
0N/A $(call RunOthervmBatch)
0N/A
0N/A# All beans tests
0N/Ajdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
0N/A @$(SummaryInfo)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_io
0N/Ajdk_io: java/io
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_lang
0N/Ajdk_lang: java/lang
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_management1
0N/Ajdk_management1: javax/management
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_management2
0N/Ajdk_management2: com/sun/jmx com/sun/management sun/management
0N/A $(call RunOthervmBatch)
0N/A
0N/A# All management tests
0N/Ajdk_management: jdk_management1 jdk_management2
0N/A @$(SummaryInfo)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_math
0N/Ajdk_math: java/math
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_misc
0N/Ajdk_misc: demo javax/imageio javax/naming javax/print javax/script \
0N/A javax/smartcardio javax/sound com/sun/java com/sun/jndi \
0N/A com/sun/org sun/misc sun/pisces
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_net
1426N/Ajdk_net: com/sun/net java/net sun/net
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_nio1
0N/Ajdk_nio1: java/nio/file
0N/A $(call RunSamevmBatch)
1426N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_nio2
0N/Ajdk_nio2: java/nio/Buffer java/nio/ByteOrder \
0N/A java/nio/channels java/nio/BufferPoolMXBean java/nio/MappedByteBuffer
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_nio3
0N/Ajdk_nio3: com/sun/nio sun/nio
0N/A $(call RunOthervmBatch)
0N/A
0N/A# All nio tests
0N/Ajdk_nio: jdk_nio1 jdk_nio2 jdk_nio3
0N/A @$(SummaryInfo)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_rmi
0N/Ajdk_rmi: java/rmi javax/rmi sun/rmi
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_security1
0N/Ajdk_security1: java/security
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_security2
0N/Ajdk_security2: javax/crypto com/sun/crypto
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_security3
0N/Ajdk_security3: com/sun/security lib/security javax/security sun/security
0N/A $(call RunOthervmBatch)
0N/A
0N/A# All security tests
0N/Ajdk_security: jdk_security1 jdk_security2 jdk_security3
0N/A @$(SummaryInfo)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has problems, and doesn't help performance as much as others.
0N/AJDK_ALL_TARGETS += jdk_swing
0N/Ajdk_swing: javax/swing sun/java2d
0N/A $(call RunOthervmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_text
0N/Ajdk_text: java/text sun/text
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_tools1
0N/Ajdk_tools1: com/sun/jdi
0N/A $(call RunSamevmBatch)
0N/A
0N/A# Stable othervm testruns (minus items from PROBLEM_LIST)
0N/A# Using samevm has serious problems with these tests
0N/AJDK_ALL_TARGETS += jdk_tools2
0N/Ajdk_tools2: com/sun/tools sun/jvmstat sun/tools tools vm com/sun/servicetag com/sun/tracing
0N/A $(call RunOthervmBatch)
0N/A
0N/A# All tools tests
0N/Ajdk_tools: jdk_tools1 jdk_tools2
0N/A @$(SummaryInfo)
0N/A
0N/A# Stable samevm testruns (minus items from PROBLEM_LIST)
0N/AJDK_ALL_TARGETS += jdk_util
0N/Ajdk_util: java/util sun/util
0N/A $(call RunSamevmBatch)
0N/A
0N/A# ------------------------------------------------------------------
0N/A
0N/A# Run all tests
0N/AFILTER_OUT_LIST=jdk_awt jdk_rmi jdk_swing
0N/AJDK_ALL_STABLE_TARGETS := $(filter-out $(FILTER_OUT_LIST), $(JDK_ALL_TARGETS))
0N/Ajdk_all: $(JDK_ALL_STABLE_TARGETS)
0N/A @$(SummaryInfo)
0N/A
0N/A# These are all phony targets
0N/APHONY_LIST += $(JDK_ALL_TARGETS)
0N/A
0N/A# ------------------------------------------------------------------
0N/A
0N/A# Default JTREG to run (win32 script works for everybody)
0N/AJTREG = $(JT_HOME)/win32/bin/jtreg
0N/A# Add any extra options (samevm etc.)
0N/AJTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
0N/A# Only run automatic tests
0N/AJTREG_BASIC_OPTIONS += -a
1255N/A# Always turn on assertions
0N/AJTREG_ASSERT_OPTION = -ea -esa
1255N/AJTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
1255N/A# Report details on all failed or error tests, times too
0N/AJTREG_BASIC_OPTIONS += -v:fail,error,time
1255N/A# Retain all files for failing tests
0N/AJTREG_BASIC_OPTIONS += -retain:fail,error
0N/A# Ignore tests are not run and completely silent about it
0N/AJTREG_IGNORE_OPTION = -ignore:quiet
0N/AJTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
0N/A# Multiple by 4 the timeout numbers
0N/AJTREG_TIMEOUT_OPTION = -timeoutFactor:4
0N/AJTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
0N/A# Boost the max memory for jtreg to avoid gc thrashing
0N/AJTREG_MEMORY_OPTION = -J-Xmx512m
0N/AJTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
0N/A
0N/A# Make sure jtreg exists
0N/A$(JTREG): $(JT_HOME)
0N/A
0N/A# Run jtreg
0N/Ajtreg_tests: prep $(PRODUCT_HOME) $(JTREG) $(EXCLUDELIST)
0N/A @$(EXPAND) $(EXCLUDELIST) \
0N/A | $(CUT) -d' ' -f1 \
0N/A | $(SED) -e 's@^@Excluding: @'
0N/A ( \
0N/A ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)"); \
0N/A export JT_HOME; \
0N/A $(shell $(GETMIXEDPATH) "$(JTREG)") \
0N/A $(JTREG_BASIC_OPTIONS) \
0N/A -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
0N/A -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
0N/A -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
0N/A -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \
0N/A $(JTREG_TEST_OPTIONS) \
0N/A $(TESTDIRS) \
0N/A ) ; $(BUNDLE_UP_AND_EXIT) \
0N/A ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
0N/A
0N/APHONY_LIST += jtreg_tests
0N/A
0N/A################################################################
0N/A
0N/A# packtest
0N/A
0N/A# Expect JPRT to set JPRT_PACKTEST_HOME.
0N/APACKTEST_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/packtest
0N/Aifdef JPRT_PACKTEST_HOME
0N/A PACKTEST_HOME = $(JPRT_PACKTEST_HOME)
0N/Aendif
0N/A
0N/Apacktest: prep $(PACKTEST_HOME)/ptest $(PRODUCT_HOME)
0N/A ( $(CD) $(PACKTEST_HOME) && \
0N/A $(PACKTEST_HOME)/ptest \
0N/A -t "$(PRODUCT_HOME)" \
0N/A $(PACKTEST_STRESS_OPTION) \
0N/A $(EXTRA_PACKTEST_OPTIONS) \
0N/A -W $(ABS_TEST_OUTPUT_DIR) \
0N/A $(JAVA_ARGS:%=-J %) \
0N/A $(JAVA_VM_ARGS:%=-J %) \
0N/A ) ; $(BUNDLE_UP_AND_EXIT)
0N/A
0N/Apacktest_stress: PACKTEST_STRESS_OPTION=-s
0N/Apacktest_stress: packtest
0N/A
0N/APHONY_LIST += packtest packtest_stress
0N/A
0N/A################################################################
0N/A
0N/A# perftest to collect statistics
0N/A
0N/A# Expect JPRT to set JPRT_PACKTEST_HOME.
0N/APERFTEST_HOME = ${TEST_ROOT}/perf
0N/Aifdef JPRT_PERFTEST_HOME
0N/A PERFTEST_HOME = $(JPRT_PERFTEST_HOME)
0N/Aendif
0N/A
0N/Aperftest: ( $(PERFTEST_HOME)/perftest \
0N/A -t $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
0N/A -w $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)") \
0N/A -h $(PERFTEST_HOME) \
0N/A ) ; $(BUNDLE_UP_AND_EXIT)
0N/A
0N/A
0N/APHONY_LIST += perftest
0N/A
0N/A################################################################
0N/A
0N/A# vmsqe tests
0N/A
0N/A# Expect JPRT to set JPRT_VMSQE_HOME.
0N/AVMSQE_HOME = /java/sqe/comp/vm/testbase/sqe/vm/current/build/latest/vm
0N/Aifdef JPRT_VMSQE_HOME
0N/A VMSQE_HOME = $(JPRT_VMSQE_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_RUNVMSQE_HOME.
0N/ARUNVMSQE_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/runvmsqe
0N/Aifdef JPRT_RUNVMSQE_HOME
0N/A RUNVMSQE_HOME = $(JPRT_RUNVMSQE_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_TONGA3_HOME.
0N/ATONGA3_HOME = /java/sqe//tools/gtee/harness/tonga
0N/Aifdef JPRT_TONGA3_HOME
0N/A TONGA3_HOME = $(JPRT_TONGA3_HOME)
0N/Aendif
0N/A
0N/ARUNVMSQE_BIN = $(RUNVMSQE_HOME)/bin/runvmsqe
0N/A
0N/Avmsqe_tests: prep $(VMSQE_HOME)/vm $(TONGA3_HOME) $(RUNVMSQE_BIN) $(PRODUCT_HOME)
0N/A $(RM) -r $(ABS_TEST_OUTPUT_DIR)/vmsqe
0N/A ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
0N/A $(RUNVMSQE_BIN) \
0N/A -jdk "$(PRODUCT_HOME)" \
0N/A -o "$(ABS_TEST_OUTPUT_DIR)/vmsqe" \
0N/A -testbase "$(VMSQE_HOME)/vm" \
0N/A -tonga "$(TONGA3_HOME)" \
0N/A -tongajdk "$(ALT_BOOTDIR)" \
0N/A $(JAVA_ARGS) \
0N/A $(JAVA_VM_ARGS) \
0N/A $(RUNVMSQE_TEST_OPTION) \
0N/A $(EXTRA_RUNVMSQE_OPTIONS) \
0N/A ) ; $(BUNDLE_UP_AND_EXIT)
0N/A
0N/Avmsqe_jdwp: RUNVMSQE_TEST_OPTION=-jdwp
0N/Avmsqe_jdwp: vmsqe_tests
0N/A
0N/Avmsqe_jdi: RUNVMSQE_TEST_OPTION=-jdi
0N/Avmsqe_jdi: vmsqe_tests
0N/A
0N/Avmsqe_jdb: RUNVMSQE_TEST_OPTION=-jdb
0N/Avmsqe_jdb: vmsqe_tests
0N/A
0N/Avmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
0N/Avmsqe_quick-jdi: vmsqe_tests
0N/A
0N/Avmsqe_sajdi: RUNVMSQE_TEST_OPTION=-sajdi
0N/Avmsqe_sajdi: vmsqe_tests
0N/A
0N/Avmsqe_jvmti: RUNVMSQE_TEST_OPTION=-jvmti
0N/Avmsqe_jvmti: vmsqe_tests
0N/A
0N/Avmsqe_hprof: RUNVMSQE_TEST_OPTION=-hprof
0N/Avmsqe_hprof: vmsqe_tests
0N/A
0N/Avmsqe_monitoring: RUNVMSQE_TEST_OPTION=-monitoring
0N/Avmsqe_monitoring: vmsqe_tests
0N/A
0N/APHONY_LIST += vmsqe_jdwp vmsqe_jdi vmsqe_jdb vmsqe_quick-jdi vmsqe_sajdi \
0N/A vmsqe_jvmti vmsqe_hprof vmsqe_monitoring vmsqe_tests
0N/A
0N/A################################################################
0N/A
0N/A# jck tests
0N/A
0N/AJCK_WORK_DIR = $(ABS_TEST_OUTPUT_DIR)/JCKwork
0N/AJCK_REPORT_DIR = $(ABS_TEST_OUTPUT_DIR)/JCKreport
0N/AJCK_PROPERTIES = $(ABS_TEST_OUTPUT_DIR)/jck.properties
0N/AJCK_CONFIG = $(ABS_TEST_OUTPUT_DIR)/jck.config
0N/A
0N/AJCK_JAVA_EXE = $(PRODUCT_HOME)/bin/java$(EXESUFFIX)
0N/A
0N/AJCK_JAVATEST_JAR = $(JCK_HOME)/lib/javatest.jar
0N/AJCK_JAVATEST = $(ALT_BOOTDIR)/bin/java -jar $(JCK_JAVATEST_JAR)
0N/A
0N/A$(JCK_CONFIG): $(TEST_ROOT)/JCK-$(JCK_BUNDLE_NAME)-$(JCK_RELEASE)-base.jti
0N/A $(RM) $@
0N/A $(MKDIR) -p $(@D)
0N/A $(CP) $< $@
0N/A
0N/A$(JCK_PROPERTIES): $(PRODUCT_HOME) $(JCK_JAVA_EXE)
0N/A $(RM) $@
1138N/A $(MKDIR) -p $(@D)
1138N/A $(ECHO) "jck.env.compiler.compRefExecute.cmdAsFile=$(JCK_JAVA_EXE)" >> $@
1138N/A $(ECHO) "jck.env.compiler.compRefExecute.systemRoot=$(SYSTEMROOT)" >> $@
0N/A $(ECHO) "jck.env.compiler.testCompile.testCompileAPImultiJVM.cmdAsFile=$(JCK_JAVA_EXE)" >> $@
0N/A $(ECHO) "jck.tests.tests=$(JCK_BUNDLE_TESTDIRS)" >> $@
0N/A
0N/Ajck_tests: prep $(JCK_HOME) $(JCK_PROPERTIES) $(JCK_CONFIG) $(JCK_JAVATEST_JAR)
0N/A $(MKDIR) -p $(JCK_WORK_DIR)
0N/A ( $(JCK_JAVATEST) \
0N/A -verbose:commands,non-pass \
0N/A -testSuite $(JCK_HOME) \
0N/A -workDir $(JCK_WORK_DIR) \
0N/A -config $(JCK_CONFIG) \
0N/A -set -file $(JCK_PROPERTIES) \
0N/A -runtests \
0N/A -writeReport $(JCK_REPORT_DIR) \
0N/A ) ; $(BUNDLE_UP_AND_EXIT)
1138N/A
0N/APHONY_LIST += jck_tests
1138N/A
0N/A################################################################
0N/A
0N/A# jck6 tests
0N/A
0N/AJCK6_RELEASE = 6b
0N/AJCK6_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/$(JCK6_RELEASE)/archive/fcs/binaries
0N/A
0N/A# Expect JPRT to set JPRT_JCK6COMPILER_HOME.
0N/AJCK6COMPILER_HOME = $(JCK6_DEFAULT_HOME)/JCK-compiler-$(JCK6_RELEASE)
0N/Aifdef JPRT_JCK6COMPILER_HOME
1138N/A JCK6COMPILER_HOME = $(JPRT_JCK6COMPILER_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_JCK6RUNTIME_HOME.
0N/AJCK6RUNTIME_HOME = $(JCK6_DEFAULT_HOME)/JCK-runtime-$(JCK6_RELEASE)
0N/Aifdef JPRT_JCK6RUNTIME_HOME
0N/A JCK6RUNTIME_HOME = $(JPRT_JCK6RUNTIME_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_JCK6DEVTOOLS_HOME.
0N/AJCK6DEVTOOLS_HOME = $(JCK6_DEFAULT_HOME)/JCK-devtools-$(JCK6_RELEASE)
0N/Aifdef JPRT_JCK6DEVTOOLS_HOME
0N/A JCK6DEVTOOLS_HOME = $(JPRT_JCK6DEVTOOLS_HOME)
0N/Aendif
0N/A
0N/Ajck6_tests: JCK_HOME=$(JCK6_HOME)
0N/Ajck6_tests: JCK_RELEASE=$(JCK6_RELEASE)
0N/Ajck6_tests: jck_tests
0N/A
0N/Ajck6compiler: JCK6_HOME=$(JCK6COMPILER_HOME)
0N/Ajck6compiler: JCK_BUNDLE_NAME=compiler
0N/Ajck6compiler: jck6_tests
0N/A
0N/Ajck6compiler_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck6compiler_lang: jck6compiler
0N/A
0N/Ajck6runtime: JCK6_HOME=$(JCK6RUNTIME_HOME)
0N/Ajck6runtime: JCK_BUNDLE_NAME=runtime
0N/Ajck6runtime: jck6_tests
0N/A
0N/Ajck6runtime_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck6runtime_lang: jck6runtime
0N/A
0N/Ajck6devtools: JCK6_HOME=$(JCK6DEVTOOLS_HOME)
0N/Ajck6devtools: JCK_BUNDLE_NAME=devtools
1409N/Ajck6devtools: jck6_tests
0N/A
0N/Ajck6devtools_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck6devtools_lang: jck6devtools
0N/A
0N/APHONY_LIST += jck6compiler jck6runtime jck6devtools jck6_tests \
0N/A jck6compiler_lang jck6runtime_lang jck6devtools_lang
0N/A
0N/A################################################################
0N/A
0N/A# jck7 tests
0N/A
0N/AJCK7_RELEASE = 7
0N/AJCK7_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/$(JCK7_RELEASE)/archive/fcs/binaries
0N/A
0N/A# Expect JPRT to set JPRT_JCK7COMPILER_HOME.
0N/AJCK7COMPILER_HOME = $(JCK7_DEFAULT_HOME)/JCK-compiler-$(JCK7_RELEASE)
0N/Aifdef JPRT_JCK7COMPILER_HOME
0N/A JCK7COMPILER_HOME = $(JPRT_JCK7COMPILER_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_JCK7RUNTIME_HOME.
0N/AJCK7RUNTIME_HOME = $(JCK7_DEFAULT_HOME)/JCK-runtime-$(JCK7_RELEASE)
0N/Aifdef JPRT_JCK7RUNTIME_HOME
0N/A JCK7RUNTIME_HOME = $(JPRT_JCK7RUNTIME_HOME)
0N/Aendif
0N/A
0N/A# Expect JPRT to set JPRT_JCK7DEVTOOLS_HOME.
0N/AJCK7DEVTOOLS_HOME = $(JCK7_DEFAULT_HOME)/JCK-devtools-$(JCK7_RELEASE)
0N/Aifdef JPRT_JCK7DEVTOOLS_HOME
0N/A JCK7DEVTOOLS_HOME = $(JPRT_JCK7DEVTOOLS_HOME)
0N/Aendif
0N/A
0N/Ajck7_tests: JCK_HOME=$(JCK7_HOME)
0N/Ajck7_tests: JCK_RELEASE=$(JCK7_RELEASE)
0N/Ajck7_tests: jck_tests
0N/A
0N/Ajck7compiler: JCK7_HOME=$(JCK7COMPILER_HOME)
0N/Ajck7compiler: JCK_BUNDLE_NAME=compiler
0N/Ajck7compiler: jck7_tests
0N/A
0N/Ajck7compiler_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck7compiler_lang: jck7compiler
0N/A
0N/Ajck7runtime: JCK7_HOME=$(JCK7RUNTIME_HOME)
0N/Ajck7runtime: JCK_BUNDLE_NAME=runtime
0N/Ajck7runtime: jck7_tests
0N/A
0N/Ajck7runtime_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck7runtime_lang: jck7runtime
0N/A
0N/Ajck7devtools: JCK7_HOME=$(JCK7DEVTOOLS_HOME)
0N/Ajck7devtools: JCK_BUNDLE_NAME=devtools
0N/Ajck7devtools: jck7_tests
0N/A
0N/Ajck7devtools_lang: JCK_BUNDLE_TESTDIRS=lang
0N/Ajck7devtools_lang: jck7devtools
0N/A
0N/APHONY_LIST += jck7compiler jck7runtime jck7devtools jck7_tests \
0N/A jck7compiler_lang jck7runtime_lang jck7devtools_lang
0N/A
0N/A################################################################
0N/A
0N/A# Phony targets (e.g. these are not filenames)
0N/A.PHONY: all clean prep $(PHONY_LIST)
0N/A
1601N/A################################################################
0N/A
0N/A