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