blob: 7571c8756124759decb127b04cc25c61a0bdd964 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
Kelly O'Haird2b1e202011-04-06 22:06:11 -07002# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -07003# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
Kelly O'Hairfe008ae2010-05-25 15:58:33 -07007# published by the Free Software Foundation. Oracle designates this
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -07008# particular file as subject to the "Classpath" exception as provided
Kelly O'Hairfe008ae2010-05-25 15:58:33 -07009# by Oracle in the LICENSE file that accompanied this code.
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070010#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
Kelly O'Hairfe008ae2010-05-25 15:58:33 -070021# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22# or visit www.oracle.com if you need additional information or have any
23# questions.
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070024#
25
26#
27# Makefile to run various jdk tests
J. Duke319a3b92007-12-01 00:00:00 +000028#
29
Kelly O'Haird1258922009-11-08 15:11:10 -080030# Empty these to get rid of some default rules
31.SUFFIXES:
32.SUFFIXES: .java
33CO=
34GET=
35
36# Utilities used
37AWK = awk
38CAT = cat
39CD = cd
Kelly O'Hair56131862010-05-12 21:35:55 -070040CHMOD = chmod
Kelly O'Haird1258922009-11-08 15:11:10 -080041CP = cp
42CUT = cut
Kelly O'Hair56131862010-05-12 21:35:55 -070043DIRNAME = dirname
Kelly O'Haird1258922009-11-08 15:11:10 -080044ECHO = echo
45EGREP = egrep
46EXPAND = expand
Kelly O'Hair56131862010-05-12 21:35:55 -070047FIND = find
Kelly O'Haird1258922009-11-08 15:11:10 -080048MKDIR = mkdir
Kelly O'Haird1258922009-11-08 15:11:10 -080049PWD = pwd
50SED = sed
Kelly O'Haird1258922009-11-08 15:11:10 -080051SORT = sort
52TEE = tee
53UNAME = uname
54UNIQ = uniq
55WC = wc
Kelly O'Haird1258922009-11-08 15:11:10 -080056ZIP = zip
57
58# Get OS name from uname
59UNAME_S := $(shell $(UNAME) -s)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070060
61# Commands to run on paths to make mixed paths for java on windows
Kelly O'Haird1258922009-11-08 15:11:10 -080062GETMIXEDPATH=$(ECHO)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070063
64# Location of developer shared files
65SLASH_JAVA = /java
66
67# Platform specific settings
Kelly O'Haird1258922009-11-08 15:11:10 -080068ifeq ($(UNAME_S), SunOS)
69 OS_NAME = solaris
70 OS_ARCH := $(shell $(UNAME) -p)
71 OS_VERSION := $(shell $(UNAME) -r)
J. Duke319a3b92007-12-01 00:00:00 +000072endif
Kelly O'Haird1258922009-11-08 15:11:10 -080073ifeq ($(UNAME_S), Linux)
74 OS_NAME = linux
75 OS_ARCH := $(shell $(UNAME) -m)
Kelly O'Hair79132952010-03-12 09:03:02 -080076 # Check for unknown arch, try uname -p if uname -m says unknown
77 ifeq ($(OS_ARCH),unknown)
78 OS_ARCH := $(shell $(UNAME) -p)
79 endif
Kelly O'Haird1258922009-11-08 15:11:10 -080080 OS_VERSION := $(shell $(UNAME) -r)
J. Duke319a3b92007-12-01 00:00:00 +000081endif
Kelly O'Haird7382802010-05-20 13:57:58 -070082ifeq ($(OS_NAME),)
83 OS_NAME = windows
84 # GNU Make or MKS overrides $(PROCESSOR_ARCHITECTURE) to always
85 # return "x86". Use the first word of $(PROCESSOR_IDENTIFIER) instead.
86 ifeq ($(PROCESSOR_IDENTIFIER),)
87 PROC_ARCH:=$(shell $(UNAME) -m)
88 else
89 PROC_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER))
90 endif
91 OS_ARCH:=$(PROC_ARCH)
92 SLASH_JAVA = J:
93 EXESUFFIX = .exe
94 # These need to be different depending on MKS or CYGWIN
95 ifeq ($(findstring cygdrive,$(shell ($(CD) C:/ && $(PWD)))), )
96 GETMIXEDPATH = dosname -s
97 OS_VERSION := $(shell $(UNAME) -r)
98 else
99 GETMIXEDPATH = cygpath -m -s
100 OS_VERSION := $(shell $(UNAME) -s | $(CUT) -d'-' -f2)
J. Duke319a3b92007-12-01 00:00:00 +0000101 endif
Kelly O'Haird1258922009-11-08 15:11:10 -0800102endif
103
104# Only want major and minor numbers from os version
105OS_VERSION := $(shell $(ECHO) "$(OS_VERSION)" | $(CUT) -d'.' -f1,2)
106
Kelly O'Hair79132952010-03-12 09:03:02 -0800107# Name to use for x86_64 arch (historically amd64, but should change someday)
108OS_ARCH_X64_NAME:=amd64
109#OS_ARCH_X64_NAME:=x64
110
111# Alternate arch names (in case this arch is known by a second name)
112# PROBLEM_LISTS may use either name.
113OS_ARCH2-amd64:=x64
114#OS_ARCH2-x64:=amd64
115
116# Try and use the arch names consistently
Kelly O'Haird7382802010-05-20 13:57:58 -0700117OS_ARCH:=$(patsubst x64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
118OS_ARCH:=$(patsubst X64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
119OS_ARCH:=$(patsubst AMD64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
120OS_ARCH:=$(patsubst amd64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
121OS_ARCH:=$(patsubst x86_64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
122OS_ARCH:=$(patsubst 8664,$(OS_ARCH_X64_NAME),$(OS_ARCH))
123OS_ARCH:=$(patsubst EM64T,$(OS_ARCH_X64_NAME),$(OS_ARCH))
124OS_ARCH:=$(patsubst em64t,$(OS_ARCH_X64_NAME),$(OS_ARCH))
125OS_ARCH:=$(patsubst intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
126OS_ARCH:=$(patsubst Intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
127OS_ARCH:=$(patsubst INTEL64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
128OS_ARCH:=$(patsubst IA64,ia64,$(OS_ARCH))
129OS_ARCH:=$(patsubst X86,i586,$(OS_ARCH))
130OS_ARCH:=$(patsubst x86,i586,$(OS_ARCH))
131OS_ARCH:=$(patsubst i386,i586,$(OS_ARCH))
132OS_ARCH:=$(patsubst i486,i586,$(OS_ARCH))
133OS_ARCH:=$(patsubst i686,i586,$(OS_ARCH))
134OS_ARCH:=$(patsubst 386,i586,$(OS_ARCH))
135OS_ARCH:=$(patsubst 486,i586,$(OS_ARCH))
136OS_ARCH:=$(patsubst 586,i586,$(OS_ARCH))
137OS_ARCH:=$(patsubst 686,i586,$(OS_ARCH))
Kelly O'Haird1258922009-11-08 15:11:10 -0800138
Kelly O'Hair79132952010-03-12 09:03:02 -0800139# Default ARCH_DATA_MODEL settings
140ARCH_DATA_MODEL-i586 = 32
141ARCH_DATA_MODEL-$(OS_ARCH_X64_NAME) = 64
142ARCH_DATA_MODEL-ia64 = 64
143ARCH_DATA_MODEL-sparc = 32
144ARCH_DATA_MODEL-sparcv9 = 64
145
146# If ARCH_DATA_MODEL is not defined, try and pick a reasonable default
147ifndef ARCH_DATA_MODEL
148 ARCH_DATA_MODEL:=$(ARCH_DATA_MODEL-$(OS_ARCH))
149endif
Kelly O'Haird1258922009-11-08 15:11:10 -0800150ifndef ARCH_DATA_MODEL
151 ARCH_DATA_MODEL=32
152endif
Kelly O'Hair79132952010-03-12 09:03:02 -0800153
154# Platform directory name
155PLATFORM_OS = $(OS_NAME)-$(OS_ARCH)
156
157# Check ARCH_DATA_MODEL, adjust OS_ARCH accordingly on solaris
Kelly O'Haird1258922009-11-08 15:11:10 -0800158ARCH_DATA_MODEL_ERROR= \
Kelly O'Hair79132952010-03-12 09:03:02 -0800159 ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) cannot be used with $(PLATFORM_OS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800160ifeq ($(ARCH_DATA_MODEL),64)
Kelly O'Hair79132952010-03-12 09:03:02 -0800161 ifeq ($(PLATFORM_OS),solaris-i586)
162 OS_ARCH=$(OS_ARCH_X64_NAME)
Kelly O'Haird1258922009-11-08 15:11:10 -0800163 endif
Kelly O'Hair79132952010-03-12 09:03:02 -0800164 ifeq ($(PLATFORM_OS),solaris-sparc)
Kelly O'Haird1258922009-11-08 15:11:10 -0800165 OS_ARCH=sparcv9
166 endif
167 ifeq ($(OS_ARCH),i586)
168 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
169 endif
170 ifeq ($(OS_ARCH),sparc)
171 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
172 endif
173else
174 ifeq ($(ARCH_DATA_MODEL),32)
Kelly O'Hair79132952010-03-12 09:03:02 -0800175 ifeq ($(OS_ARCH),$(OS_ARCH_X64_NAME))
Kelly O'Haird1258922009-11-08 15:11:10 -0800176 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
177 endif
178 ifeq ($(OS_ARCH),ia64)
179 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
180 endif
181 ifeq ($(OS_ARCH),sparcv9)
182 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
183 endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700184 else
Kelly O'Haird1258922009-11-08 15:11:10 -0800185 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700186 endif
J. Duke319a3b92007-12-01 00:00:00 +0000187endif
188
Kelly O'Hair79132952010-03-12 09:03:02 -0800189# Alternate OS_ARCH name (defaults to OS_ARCH)
190OS_ARCH2:=$(OS_ARCH2-$(OS_ARCH))
191ifeq ($(OS_ARCH2),)
192 OS_ARCH2:=$(OS_ARCH)
193endif
194
J. Duke319a3b92007-12-01 00:00:00 +0000195# Root of this test area (important to use full paths in some places)
Kelly O'Haird1258922009-11-08 15:11:10 -0800196TEST_ROOT := $(shell $(PWD))
J. Duke319a3b92007-12-01 00:00:00 +0000197
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700198# Root of all test results
199ifdef ALT_OUTPUTDIR
200 ABS_OUTPUTDIR = $(ALT_OUTPUTDIR)
J. Duke319a3b92007-12-01 00:00:00 +0000201else
Kelly O'Hair79132952010-03-12 09:03:02 -0800202 ABS_OUTPUTDIR = $(TEST_ROOT)/../build/$(PLATFORM_OS)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700203endif
Kelly O'Hair79132952010-03-12 09:03:02 -0800204ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
205ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700206
207# Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
208ifndef PRODUCT_HOME
209 # Try to use j2sdk-image if it exists
Kelly O'Hair79132952010-03-12 09:03:02 -0800210 ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/j2sdk-image
211 PRODUCT_HOME := \
212 $(shell \
213 if [ -d $(ABS_JDK_IMAGE) ] ; then \
214 $(ECHO) "$(ABS_JDK_IMAGE)"; \
215 else \
216 $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)"; \
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700217 fi)
218 PRODUCT_HOME := $(PRODUCT_HOME)
J. Duke319a3b92007-12-01 00:00:00 +0000219endif
220
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700221# Expect JPRT to set JPRT_PRODUCT_ARGS (e.g. -server etc.)
222# Should be passed into 'java' only.
Kelly O'Haird1258922009-11-08 15:11:10 -0800223# Could include: -d64 -server -client OR any java option
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700224ifdef JPRT_PRODUCT_ARGS
225 JAVA_ARGS = $(JPRT_PRODUCT_ARGS)
226endif
J. Duke319a3b92007-12-01 00:00:00 +0000227
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700228# Expect JPRT to set JPRT_PRODUCT_VM_ARGS (e.g. -Xcomp etc.)
229# Should be passed into anything running the vm (java, javac, javadoc, ...).
230ifdef JPRT_PRODUCT_VM_ARGS
231 JAVA_VM_ARGS = $(JPRT_PRODUCT_VM_ARGS)
232endif
J. Duke319a3b92007-12-01 00:00:00 +0000233
Kelly O'Haird1258922009-11-08 15:11:10 -0800234# Check JAVA_ARGS arguments based on ARCH_DATA_MODEL etc.
235ifeq ($(OS_NAME),solaris)
236 D64_ERROR_MESSAGE=Mismatch between ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) and use of -d64 in JAVA_ARGS=$(JAVA_ARGS)
237 ifeq ($(ARCH_DATA_MODEL),32)
238 ifneq ($(findstring -d64,$(JAVA_ARGS)),)
239 x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
240 endif
241 endif
242 ifeq ($(ARCH_DATA_MODEL),64)
243 ifeq ($(findstring -d64,$(JAVA_ARGS)),)
244 x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
245 endif
246 endif
247endif
248
Kelly O'Haird7382802010-05-20 13:57:58 -0700249# Macro to run make and set the shared library permissions
250define SharedLibraryPermissions
251$(MAKE) SHARED_LIBRARY_DIR=$1 UNIQUE_DIR=$@ shared_library_permissions
Kelly O'Hair56131862010-05-12 21:35:55 -0700252endef
253
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700254# Expect JPRT to set JPRT_ARCHIVE_BUNDLE (path to zip bundle for results)
255ARCHIVE_BUNDLE = $(ABS_TEST_OUTPUT_DIR)/ARCHIVE_BUNDLE.zip
256ifdef JPRT_ARCHIVE_BUNDLE
257 ARCHIVE_BUNDLE = $(JPRT_ARCHIVE_BUNDLE)
258endif
J. Duke319a3b92007-12-01 00:00:00 +0000259
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700260# How to create the test bundle (pass or fail, we want to create this)
261# Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
Kelly O'Hair56131862010-05-12 21:35:55 -0700262ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)` \
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700263 && $(CD) $(ABS_TEST_OUTPUT_DIR) \
Kelly O'Hair119b6472011-03-22 11:08:09 -0700264 && $(CHMOD) -R a+r . \
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700265 && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
Kelly O'Haird1258922009-11-08 15:11:10 -0800266SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport/text/summary.txt
267STATS_TXT_NAME = Stats.txt
268STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/$(STATS_TXT_NAME)
269RUNLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/runlist.txt
270PASSLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/passlist.txt
271FAILLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/faillist.txt
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800272EXITCODE = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/exitcode.txt
273
274TESTEXIT = \
275 if [ ! -s $(EXITCODE) ] ; then \
276 $(ECHO) "ERROR: EXITCODE file not filled in."; \
277 $(ECHO) "1" > $(EXITCODE); \
278 fi ; \
279 testExitCode=`$(CAT) $(EXITCODE)`; \
280 $(ECHO) "EXIT CODE: $${testExitCode}"; \
Kelly O'Hair61c09152009-12-09 09:46:57 -0800281 exit $${testExitCode}
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800282
Kelly O'Haird1258922009-11-08 15:11:10 -0800283BUNDLE_UP_AND_EXIT = \
284( \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800285 jtregExitCode=$$? && \
Kelly O'Haird1258922009-11-08 15:11:10 -0800286 _summary="$(SUMMARY_TXT)"; \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800287 $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
288 $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
Kelly O'Haird1258922009-11-08 15:11:10 -0800289 if [ -r "$${_summary}" ] ; then \
Kelly O'Hair61c09152009-12-09 09:46:57 -0800290 $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
Kelly O'Haird1258922009-11-08 15:11:10 -0800291 $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
292 $(EGREP) ' Passed\.' $(RUNLIST) \
293 | $(EGREP) -v ' Error\.' \
294 | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
295 ( $(EGREP) ' Failed\.' $(RUNLIST); \
296 $(EGREP) ' Error\.' $(RUNLIST); \
297 $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
298 | $(SORT) | $(UNIQ) > $(FAILLIST); \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800299 if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
Kelly O'Haird1258922009-11-08 15:11:10 -0800300 $(EXPAND) $(FAILLIST) \
301 | $(CUT) -d' ' -f1 \
302 | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800303 if [ $${jtregExitCode} = 0 ] ; then \
304 jtregExitCode=1; \
305 fi; \
Kelly O'Haird1258922009-11-08 15:11:10 -0800306 fi; \
307 runc="`$(CAT) $(RUNLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
308 passc="`$(CAT) $(PASSLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
309 failc="`$(CAT) $(FAILLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
310 exclc="`$(CAT) $(EXCLUDELIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700311 $(ECHO) "TEST STATS: name=$(UNIQUE_DIR) run=$${runc} pass=$${passc} fail=$${failc} excluded=$${exclc}" \
Kelly O'Haird1258922009-11-08 15:11:10 -0800312 >> $(STATS_TXT); \
313 else \
314 $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
315 fi; \
Kelly O'Hair119b6472011-03-22 11:08:09 -0700316 if [ -f $(STATS_TXT) ] ; then \
317 $(CAT) $(STATS_TXT); \
318 fi; \
Kelly O'Haire4fce692010-03-06 14:59:23 -0800319 $(ZIP_UP_RESULTS) ; \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800320 $(TESTEXIT) \
Kelly O'Haird1258922009-11-08 15:11:10 -0800321)
J. Duke319a3b92007-12-01 00:00:00 +0000322
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700323################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000324
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700325# Default make rule (runs jtreg_tests)
326all: jtreg_tests
327 @$(ECHO) "Testing completed successfully"
J. Duke319a3b92007-12-01 00:00:00 +0000328
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700329# Prep for output
330prep: clean
331 @$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700332 @$(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`
J. Duke319a3b92007-12-01 00:00:00 +0000333
334# Cleanup
335clean:
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700336 $(RM) -r $(ABS_TEST_OUTPUT_DIR)
337 $(RM) $(ARCHIVE_BUNDLE)
J. Duke319a3b92007-12-01 00:00:00 +0000338
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700339################################################################
340
341# jtreg tests
342
343# Expect JT_HOME to be set for jtreg tests. (home for jtreg)
Kelly O'Haird020b042009-11-23 09:51:52 -0800344ifndef JT_HOME
Weijun Wang035522b2011-09-22 12:05:26 +0800345 JT_HOME = $(SLASH_JAVA)/re/jtreg/4.1/promoted/latest/binaries/jtreg
Kelly O'Haird020b042009-11-23 09:51:52 -0800346 ifdef JPRT_JTREG_HOME
347 JT_HOME = $(JPRT_JTREG_HOME)
348 endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700349endif
350
351# Expect JPRT to set TESTDIRS to the jtreg test dirs
352ifndef TESTDIRS
Kelly O'Haird1258922009-11-08 15:11:10 -0800353 TESTDIRS = demo
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700354endif
355
Weijun Wang035522b2011-09-22 12:05:26 +0800356# Agentvm settings (default is false)
357ifndef USE_JTREG_AGENTVM
358 USE_JTREG_AGENTVM=false
Kelly O'Haird1258922009-11-08 15:11:10 -0800359endif
Weijun Wang035522b2011-09-22 12:05:26 +0800360# With agentvm, you cannot use -javaoptions?
361ifeq ($(USE_JTREG_AGENTVM),true)
362 JTREG_AGENTVM_OPTION = -agentvm
363 EXTRA_JTREG_OPTIONS += $(JTREG_AGENTVM_OPTION) $(JAVA_ARGS) $(JAVA_ARGS:%=-vmoption:%)
Kelly O'Haird1258922009-11-08 15:11:10 -0800364 JTREG_TEST_OPTIONS = $(JAVA_VM_ARGS:%=-vmoption:%)
365else
366 JTREG_TEST_OPTIONS = $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
367endif
368
Weijun Wang035522b2011-09-22 12:05:26 +0800369ifdef CONCURRENCY
370 EXTRA_JTREG_OPTIONS += -concurrency:$(CONCURRENCY)
371endif
372
Kelly O'Haird1258922009-11-08 15:11:10 -0800373# Some tests annoy me and fail frequently
374PROBLEM_LIST=ProblemList.txt
Kelly O'Haird020b042009-11-23 09:51:52 -0800375PROBLEM_LISTS=$(PROBLEM_LIST) $(wildcard closed/$(PROBLEM_LIST))
Kelly O'Haird1258922009-11-08 15:11:10 -0800376EXCLUDELIST=$(ABS_TEST_OUTPUT_DIR)/excludelist.txt
377
378# Create exclude list for this platform and arch
379ifdef NO_EXCLUDES
Kelly O'Hair119b6472011-03-22 11:08:09 -0700380$(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
Kelly O'Haird1258922009-11-08 15:11:10 -0800381 @$(ECHO) "NOTHING_EXCLUDED" > $@
382else
Kelly O'Hair119b6472011-03-22 11:08:09 -0700383$(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
Kelly O'Haird1258922009-11-08 15:11:10 -0800384 @$(RM) $@ $@.temp1 $@.temp2
Kelly O'Haird020b042009-11-23 09:51:52 -0800385 @(($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-all' ) ;\
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700386 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(PLATFORM_OS)' ) ;\
Kelly O'Hair79132952010-03-12 09:03:02 -0800387 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH2)' ) ;\
Kelly O'Haird020b042009-11-23 09:51:52 -0800388 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_VERSION)') ;\
389 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH)' ) ;\
Kelly O'Hair79132952010-03-12 09:03:02 -0800390 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH2)' ) ;\
Kelly O'Haird020b042009-11-23 09:51:52 -0800391 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-all' ) ;\
392 ($(ECHO) "#") ;\
Kelly O'Haird1258922009-11-08 15:11:10 -0800393 ) | $(SED) -e 's@^[\ ]*@@' \
394 | $(EGREP) -v '^#' > $@.temp1
Kelly O'Hair119b6472011-03-22 11:08:09 -0700395 for tdir in $(TESTDIRS) SOLARIS_10_SH_BUG_NO_EMPTY_FORS ; do \
Kelly O'Haird1258922009-11-08 15:11:10 -0800396 ( ( $(CAT) $@.temp1 | $(EGREP) "^$${tdir}" ) ; $(ECHO) "#" ) >> $@.temp2 ; \
397 done
398 @$(ECHO) "# at least one line" >> $@.temp2
399 @( $(EGREP) -v '^#' $@.temp2 ; true ) > $@
400 @$(ECHO) "Excluding list contains `$(EXPAND) $@ | $(WC) -l` items"
401endif
402
Kelly O'Haird020b042009-11-23 09:51:52 -0800403# Select list of directories that exist
404define TestDirs
405$(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
406endef
Weijun Wang035522b2011-09-22 12:05:26 +0800407# Running batches of tests with or without agentvm
408define RunAgentvmBatch
409$(ECHO) "Running tests in agentvm mode: $?"
410$(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" USE_JTREG_AGENTVM=true UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800411endef
412define RunOthervmBatch
Rama Pulavarthi691add82011-03-09 15:47:15 -0800413$(ECHO) "Running tests in othervm mode: $?"
Weijun Wang035522b2011-09-22 12:05:26 +0800414$(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" USE_JTREG_AGENTVM=false UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800415endef
416define SummaryInfo
Kelly O'Hair61c09152009-12-09 09:46:57 -0800417$(ECHO) "########################################################"
Kelly O'Haird1258922009-11-08 15:11:10 -0800418$(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
Kelly O'Hair61c09152009-12-09 09:46:57 -0800419$(ECHO) "########################################################"
Kelly O'Haird1258922009-11-08 15:11:10 -0800420endef
421
422# ------------------------------------------------------------------
423
424# Batches of tests (somewhat arbitrary assigments to jdk_* targets)
425JDK_ALL_TARGETS =
426
427# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800428# Using agentvm has problems, and doesn't help performance as much as others.
Kelly O'Haird1258922009-11-08 15:11:10 -0800429JDK_ALL_TARGETS += jdk_awt
Weijun Wang6b8980e2011-09-08 09:04:28 +0800430jdk_awt: $(call TestDirs, com/sun/awt java/awt sun/awt \
431 javax/imageio javax/print sun/pisces)
Kelly O'Haird1258922009-11-08 15:11:10 -0800432 $(call RunOthervmBatch)
433
Weijun Wang035522b2011-09-22 12:05:26 +0800434# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800435JDK_ALL_TARGETS += jdk_beans1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800436jdk_beans1: $(call TestDirs, \
437 java/beans/beancontext java/beans/PropertyChangeSupport \
Kelly O'Haird1258922009-11-08 15:11:10 -0800438 java/beans/Introspector java/beans/Performance \
Rama Pulavarthi691add82011-03-09 15:47:15 -0800439 java/beans/VetoableChangeSupport java/beans/Statement)
Weijun Wang035522b2011-09-22 12:05:26 +0800440 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800441
442# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800443# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800444JDK_ALL_TARGETS += jdk_beans2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800445jdk_beans2: $(call TestDirs, \
446 java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
447 java/beans/PropertyEditor)
Kelly O'Haird1258922009-11-08 15:11:10 -0800448 $(call RunOthervmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800449
450# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800451# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800452JDK_ALL_TARGETS += jdk_beans3
Rama Pulavarthi691add82011-03-09 15:47:15 -0800453jdk_beans3: $(call TestDirs, java/beans/XMLEncoder)
Kelly O'Haird1258922009-11-08 15:11:10 -0800454 $(call RunOthervmBatch)
455
Kelly O'Hair61c09152009-12-09 09:46:57 -0800456# All beans tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800457jdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
458 @$(SummaryInfo)
459
Weijun Wang035522b2011-09-22 12:05:26 +0800460# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800461JDK_ALL_TARGETS += jdk_io
Rama Pulavarthi691add82011-03-09 15:47:15 -0800462jdk_io: $(call TestDirs, java/io)
Weijun Wang035522b2011-09-22 12:05:26 +0800463 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800464
Weijun Wang035522b2011-09-22 12:05:26 +0800465# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800466JDK_ALL_TARGETS += jdk_lang
Rama Pulavarthi691add82011-03-09 15:47:15 -0800467jdk_lang: $(call TestDirs, java/lang)
Weijun Wang035522b2011-09-22 12:05:26 +0800468 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800469
470# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800471# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800472JDK_ALL_TARGETS += jdk_management1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800473jdk_management1: $(call TestDirs, javax/management)
Kelly O'Haird1258922009-11-08 15:11:10 -0800474 $(call RunOthervmBatch)
475
476# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800477# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800478JDK_ALL_TARGETS += jdk_management2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800479jdk_management2: $(call TestDirs, com/sun/jmx com/sun/management sun/management)
Kelly O'Haird1258922009-11-08 15:11:10 -0800480 $(call RunOthervmBatch)
481
Kelly O'Hair61c09152009-12-09 09:46:57 -0800482# All management tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800483jdk_management: jdk_management1 jdk_management2
484 @$(SummaryInfo)
485
Weijun Wang035522b2011-09-22 12:05:26 +0800486# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800487JDK_ALL_TARGETS += jdk_math
Rama Pulavarthi691add82011-03-09 15:47:15 -0800488jdk_math: $(call TestDirs, java/math)
Weijun Wang035522b2011-09-22 12:05:26 +0800489 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800490
Weijun Wang035522b2011-09-22 12:05:26 +0800491# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800492JDK_ALL_TARGETS += jdk_misc
Rama Pulavarthi691add82011-03-09 15:47:15 -0800493jdk_misc: $(call TestDirs, \
Weijun Wang6b8980e2011-09-08 09:04:28 +0800494 demo/jvmti demo/zipfs javax/naming javax/script \
495 javax/smartcardio com/sun/jndi com/sun/xml sun/misc)
Weijun Wang035522b2011-09-22 12:05:26 +0800496 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800497
Weijun Wang035522b2011-09-22 12:05:26 +0800498# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800499JDK_ALL_TARGETS += jdk_net
Rama Pulavarthi691add82011-03-09 15:47:15 -0800500jdk_net: $(call TestDirs, com/sun/net java/net sun/net)
Weijun Wang035522b2011-09-22 12:05:26 +0800501 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800502
Weijun Wang035522b2011-09-22 12:05:26 +0800503# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800504JDK_ALL_TARGETS += jdk_nio1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800505jdk_nio1: $(call TestDirs, java/nio/file)
Weijun Wang035522b2011-09-22 12:05:26 +0800506 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800507
Weijun Wang035522b2011-09-22 12:05:26 +0800508# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800509JDK_ALL_TARGETS += jdk_nio2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800510jdk_nio2: $(call TestDirs, java/nio/Buffer java/nio/ByteOrder \
Mandy Chung793f1072011-03-29 15:50:55 -0700511 java/nio/channels java/nio/MappedByteBuffer)
Kelly O'Haird7382802010-05-20 13:57:58 -0700512 $(call SharedLibraryPermissions,java/nio/channels)
Weijun Wang035522b2011-09-22 12:05:26 +0800513 $(call RunAgentvmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800514
Weijun Wang035522b2011-09-22 12:05:26 +0800515# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800516JDK_ALL_TARGETS += jdk_nio3
Chris Hegartyd97cf812011-06-23 13:00:14 +0100517jdk_nio3: $(call TestDirs, sun/nio)
Weijun Wang035522b2011-09-22 12:05:26 +0800518 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800519
Kelly O'Hair61c09152009-12-09 09:46:57 -0800520# All nio tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800521jdk_nio: jdk_nio1 jdk_nio2 jdk_nio3
522 @$(SummaryInfo)
523
Weijun Wang035522b2011-09-22 12:05:26 +0800524# Stable agentvm testruns (minus items from PROBLEM_LIST)
Chris Hegartyd97cf812011-06-23 13:00:14 +0100525jdk_sctp: $(call TestDirs, com/sun/nio/sctp)
Weijun Wang035522b2011-09-22 12:05:26 +0800526 $(call RunAgentvmBatch)
Chris Hegartyd97cf812011-06-23 13:00:14 +0100527
Kelly O'Haird1258922009-11-08 15:11:10 -0800528# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800529# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800530JDK_ALL_TARGETS += jdk_rmi
Rama Pulavarthi691add82011-03-09 15:47:15 -0800531jdk_rmi: $(call TestDirs, java/rmi javax/rmi sun/rmi)
Kelly O'Haird1258922009-11-08 15:11:10 -0800532 $(call RunOthervmBatch)
533
Weijun Wang035522b2011-09-22 12:05:26 +0800534# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800535JDK_ALL_TARGETS += jdk_security1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800536jdk_security1: $(call TestDirs, java/security)
Weijun Wang035522b2011-09-22 12:05:26 +0800537 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800538
Weijun Wang035522b2011-09-22 12:05:26 +0800539# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800540JDK_ALL_TARGETS += jdk_security2
Weijun Wang5dcff732011-08-30 10:46:27 +0800541jdk_security2: $(call TestDirs, javax/crypto javax/xml/crypto com/sun/crypto)
Weijun Wang035522b2011-09-22 12:05:26 +0800542 $(call RunAgentvmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800543
Weijun Wang035522b2011-09-22 12:05:26 +0800544# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800545JDK_ALL_TARGETS += jdk_security3
Weijun Wang6b8980e2011-09-08 09:04:28 +0800546jdk_security3: $(call TestDirs, com/sun/security lib/security javax/security \
547 sun/security com/sun/org/apache/xml/internal/security)
Kelly O'Haird7382802010-05-20 13:57:58 -0700548 $(call SharedLibraryPermissions,sun/security)
Weijun Wang035522b2011-09-22 12:05:26 +0800549 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800550
Kelly O'Hair61c09152009-12-09 09:46:57 -0800551# All security tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800552jdk_security: jdk_security1 jdk_security2 jdk_security3
553 @$(SummaryInfo)
554
Weijun Wang035522b2011-09-22 12:05:26 +0800555# Stable agentvm testruns (minus items from PROBLEM_LIST)
Weijun Wang6b8980e2011-09-08 09:04:28 +0800556JDK_ALL_TARGETS += jdk_sound
557jdk_sound: $(call TestDirs, javax/sound)
Weijun Wang035522b2011-09-22 12:05:26 +0800558 $(call RunAgentvmBatch)
Weijun Wang6b8980e2011-09-08 09:04:28 +0800559
Kelly O'Haird1258922009-11-08 15:11:10 -0800560# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800561# Using agentvm has problems, and doesn't help performance as much as others.
Kelly O'Haird1258922009-11-08 15:11:10 -0800562JDK_ALL_TARGETS += jdk_swing
Weijun Wang6b8980e2011-09-08 09:04:28 +0800563jdk_swing: $(call TestDirs, javax/swing sun/java2d \
564 demo/jfc com/sun/java/swing)
Kelly O'Haird1258922009-11-08 15:11:10 -0800565 $(call RunOthervmBatch)
566
Weijun Wang035522b2011-09-22 12:05:26 +0800567# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800568JDK_ALL_TARGETS += jdk_text
Rama Pulavarthi691add82011-03-09 15:47:15 -0800569jdk_text: $(call TestDirs, java/text sun/text)
Weijun Wang035522b2011-09-22 12:05:26 +0800570 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800571
Weijun Wang035522b2011-09-22 12:05:26 +0800572# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800573JDK_ALL_TARGETS += jdk_tools1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800574jdk_tools1: $(call TestDirs, com/sun/jdi)
Weijun Wang035522b2011-09-22 12:05:26 +0800575 $(call RunAgentvmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800576
577# Stable othervm testruns (minus items from PROBLEM_LIST)
Weijun Wang035522b2011-09-22 12:05:26 +0800578# Using agentvm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800579JDK_ALL_TARGETS += jdk_tools2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800580jdk_tools2: $(call TestDirs, \
581 com/sun/tools sun/jvmstat sun/tools tools vm \
582 com/sun/servicetag com/sun/tracing)
Kelly O'Haird7382802010-05-20 13:57:58 -0700583 $(call SharedLibraryPermissions,tools/launcher)
Weijun Wang035522b2011-09-22 12:05:26 +0800584 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800585
Kelly O'Hair61c09152009-12-09 09:46:57 -0800586# All tools tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800587jdk_tools: jdk_tools1 jdk_tools2
588 @$(SummaryInfo)
589
Weijun Wang035522b2011-09-22 12:05:26 +0800590# Stable agentvm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800591JDK_ALL_TARGETS += jdk_util
Rama Pulavarthi691add82011-03-09 15:47:15 -0800592jdk_util: $(call TestDirs, java/util sun/util)
Weijun Wang035522b2011-09-22 12:05:26 +0800593 $(call RunAgentvmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800594
595# ------------------------------------------------------------------
596
597# Run all tests
Kelly O'Hair61c09152009-12-09 09:46:57 -0800598FILTER_OUT_LIST=jdk_awt jdk_rmi jdk_swing
599JDK_ALL_STABLE_TARGETS := $(filter-out $(FILTER_OUT_LIST), $(JDK_ALL_TARGETS))
600jdk_all: $(JDK_ALL_STABLE_TARGETS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800601 @$(SummaryInfo)
602
603# These are all phony targets
604PHONY_LIST += $(JDK_ALL_TARGETS)
605
606# ------------------------------------------------------------------
607
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700608# Default JTREG to run (win32 script works for everybody)
609JTREG = $(JT_HOME)/win32/bin/jtreg
Weijun Wang035522b2011-09-22 12:05:26 +0800610# Add any extra options (agentvm etc.)
Kelly O'Haird1258922009-11-08 15:11:10 -0800611JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
612# Only run automatic tests
613JTREG_BASIC_OPTIONS += -a
Kelly O'Haird44fe662009-12-11 15:29:22 -0800614# Always turn on assertions
615JTREG_ASSERT_OPTION = -ea -esa
616JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800617# Report details on all failed or error tests, times too
618JTREG_BASIC_OPTIONS += -v:fail,error,time
619# Retain all files for failing tests
620JTREG_BASIC_OPTIONS += -retain:fail,error
621# Ignore tests are not run and completely silent about it
Kelly O'Haird44fe662009-12-11 15:29:22 -0800622JTREG_IGNORE_OPTION = -ignore:quiet
623JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800624# Multiple by 4 the timeout numbers
Kelly O'Haird44fe662009-12-11 15:29:22 -0800625JTREG_TIMEOUT_OPTION = -timeoutFactor:4
626JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800627# Boost the max memory for jtreg to avoid gc thrashing
Kelly O'Haird44fe662009-12-11 15:29:22 -0800628JTREG_MEMORY_OPTION = -J-Xmx512m
629JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700630
Kelly O'Haird1258922009-11-08 15:11:10 -0800631# Make sure jtreg exists
632$(JTREG): $(JT_HOME)
633
634# Run jtreg
635jtreg_tests: prep $(PRODUCT_HOME) $(JTREG) $(EXCLUDELIST)
636 @$(EXPAND) $(EXCLUDELIST) \
637 | $(CUT) -d' ' -f1 \
638 | $(SED) -e 's@^@Excluding: @'
639 ( \
640 ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)"); \
641 export JT_HOME; \
Kelly O'Haird1258922009-11-08 15:11:10 -0800642 $(shell $(GETMIXEDPATH) "$(JTREG)") \
643 $(JTREG_BASIC_OPTIONS) \
644 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
645 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
646 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
647 -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \
648 $(JTREG_TEST_OPTIONS) \
649 $(TESTDIRS) \
650 ) ; $(BUNDLE_UP_AND_EXIT) \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800651 ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700652
Kelly O'Haird7382802010-05-20 13:57:58 -0700653# Rule that may change execute permissions on shared library files.
654# Files in repositories should never have execute permissions, but there
655# are some tests that have pre-built shared libraries, and these windows
656# dll files must have execute permission. Adding execute permission
657# may happen automatically on windows when using certain versions of mercurial
658# but it cannot be guaranteed. And blindly adding execute permission might
659# be seen as a mercurial 'change', so we avoid adding execute permission to
660# repository files. But testing from a plain source tree needs the chmod a+rx.
661# Used on select directories and applying the chmod to all shared libraries
662# not just dll files. On windows, this may not work with MKS if the files
663# were installed with CYGWIN unzip or untar (MKS chmod may not do anything).
664# And with CYGWIN and sshd service, you may need CYGWIN=ntsec for this to work.
665#
666shared_library_permissions: $(SHARED_LIBRARY_DIR)
667 if [ ! -d $(TEST_ROOT)/../.hg ] ; then \
668 $(FIND) $< \( -name \*.dll -o -name \*.DLL -o -name \*.so \) \
669 -exec $(CHMOD) a+rx {} \; ; \
670 fi
671
672PHONY_LIST += jtreg_tests shared_library_permissions
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700673
674################################################################
675
676# packtest
677
678# Expect JPRT to set JPRT_PACKTEST_HOME.
679PACKTEST_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/packtest
680ifdef JPRT_PACKTEST_HOME
681 PACKTEST_HOME = $(JPRT_PACKTEST_HOME)
682endif
683
684packtest: prep $(PACKTEST_HOME)/ptest $(PRODUCT_HOME)
685 ( $(CD) $(PACKTEST_HOME) && \
686 $(PACKTEST_HOME)/ptest \
687 -t "$(PRODUCT_HOME)" \
688 $(PACKTEST_STRESS_OPTION) \
689 $(EXTRA_PACKTEST_OPTIONS) \
690 -W $(ABS_TEST_OUTPUT_DIR) \
691 $(JAVA_ARGS:%=-J %) \
692 $(JAVA_VM_ARGS:%=-J %) \
693 ) ; $(BUNDLE_UP_AND_EXIT)
694
695packtest_stress: PACKTEST_STRESS_OPTION=-s
696packtest_stress: packtest
697
698PHONY_LIST += packtest packtest_stress
699
700################################################################
701
Mandy Chung793f1072011-03-29 15:50:55 -0700702# perftest to collect statistics
Mandy Chunge2f72482009-05-26 17:47:57 -0700703
704# Expect JPRT to set JPRT_PACKTEST_HOME.
Kelly O'Haird7382802010-05-20 13:57:58 -0700705PERFTEST_HOME = $(TEST_ROOT)/perf
Mandy Chunge2f72482009-05-26 17:47:57 -0700706ifdef JPRT_PERFTEST_HOME
707 PERFTEST_HOME = $(JPRT_PERFTEST_HOME)
708endif
709
710perftest: ( $(PERFTEST_HOME)/perftest \
711 -t $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
712 -w $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)") \
713 -h $(PERFTEST_HOME) \
714 ) ; $(BUNDLE_UP_AND_EXIT)
715
716
717PHONY_LIST += perftest
718
719################################################################
720
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700721# vmsqe tests
722
723# Expect JPRT to set JPRT_VMSQE_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700724VMSQE_HOME = $(SLASH_JAVA)/sqe/comp/vm/testbase/sqe/vm/current/build/latest/vm
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700725ifdef JPRT_VMSQE_HOME
726 VMSQE_HOME = $(JPRT_VMSQE_HOME)
727endif
728
729# Expect JPRT to set JPRT_RUNVMSQE_HOME.
730RUNVMSQE_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/runvmsqe
731ifdef JPRT_RUNVMSQE_HOME
732 RUNVMSQE_HOME = $(JPRT_RUNVMSQE_HOME)
733endif
734
735# Expect JPRT to set JPRT_TONGA3_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700736TONGA3_HOME = $(SLASH_JAVA)/sqe/tools/gtee/harness/tonga
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700737ifdef JPRT_TONGA3_HOME
738 TONGA3_HOME = $(JPRT_TONGA3_HOME)
739endif
740
741RUNVMSQE_BIN = $(RUNVMSQE_HOME)/bin/runvmsqe
742
743vmsqe_tests: prep $(VMSQE_HOME)/vm $(TONGA3_HOME) $(RUNVMSQE_BIN) $(PRODUCT_HOME)
744 $(RM) -r $(ABS_TEST_OUTPUT_DIR)/vmsqe
745 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
746 $(RUNVMSQE_BIN) \
747 -jdk "$(PRODUCT_HOME)" \
748 -o "$(ABS_TEST_OUTPUT_DIR)/vmsqe" \
749 -testbase "$(VMSQE_HOME)/vm" \
750 -tonga "$(TONGA3_HOME)" \
751 -tongajdk "$(ALT_BOOTDIR)" \
752 $(JAVA_ARGS) \
753 $(JAVA_VM_ARGS) \
754 $(RUNVMSQE_TEST_OPTION) \
755 $(EXTRA_RUNVMSQE_OPTIONS) \
756 ) ; $(BUNDLE_UP_AND_EXIT)
757
758vmsqe_jdwp: RUNVMSQE_TEST_OPTION=-jdwp
759vmsqe_jdwp: vmsqe_tests
760
761vmsqe_jdi: RUNVMSQE_TEST_OPTION=-jdi
762vmsqe_jdi: vmsqe_tests
763
764vmsqe_jdb: RUNVMSQE_TEST_OPTION=-jdb
765vmsqe_jdb: vmsqe_tests
766
767vmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
768vmsqe_quick-jdi: vmsqe_tests
769
770vmsqe_sajdi: RUNVMSQE_TEST_OPTION=-sajdi
771vmsqe_sajdi: vmsqe_tests
772
773vmsqe_jvmti: RUNVMSQE_TEST_OPTION=-jvmti
774vmsqe_jvmti: vmsqe_tests
775
776vmsqe_hprof: RUNVMSQE_TEST_OPTION=-hprof
777vmsqe_hprof: vmsqe_tests
778
779vmsqe_monitoring: RUNVMSQE_TEST_OPTION=-monitoring
780vmsqe_monitoring: vmsqe_tests
781
782PHONY_LIST += vmsqe_jdwp vmsqe_jdi vmsqe_jdb vmsqe_quick-jdi vmsqe_sajdi \
783 vmsqe_jvmti vmsqe_hprof vmsqe_monitoring vmsqe_tests
784
785################################################################
786
787# jck tests
788
Kelly O'Hair119b6472011-03-22 11:08:09 -0700789# Default is to use jck 7 from /java/re
790JCK7_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/7/promoted/latest/binaries
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700791
792# Expect JPRT to set JPRT_JCK7COMPILER_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700793JCK7COMPILER_HOME = $(JCK7_DEFAULT_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700794ifdef JPRT_JCK7COMPILER_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700795 JCK7COMPILER_HOME = $(JPRT_JCK7COMPILER_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700796endif
797
798# Expect JPRT to set JPRT_JCK7RUNTIME_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700799JCK7RUNTIME_HOME = $(JCK7_DEFAULT_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700800ifdef JPRT_JCK7RUNTIME_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700801 JCK7RUNTIME_HOME = $(JPRT_JCK7RUNTIME_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700802endif
803
804# Expect JPRT to set JPRT_JCK7DEVTOOLS_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700805JCK7DEVTOOLS_HOME = $(JCK7_DEFAULT_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700806ifdef JPRT_JCK7DEVTOOLS_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700807 JCK7DEVTOOLS_HOME = $(JPRT_JCK7DEVTOOLS_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700808endif
809
Kelly O'Hair119b6472011-03-22 11:08:09 -0700810# The jtjck.jar utility to use to run the tests
811JTJCK_JAR = $(JCK_HOME)/lib/jtjck.jar
812JTJCK_JAVA_ARGS = -XX:MaxPermSize=256m -Xmx512m
Weijun Wang6b8980e2011-09-08 09:04:28 +0800813JTJCK_OPTIONS = -headless -v
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700814
Kelly O'Hair119b6472011-03-22 11:08:09 -0700815# Default tests to run
816ifndef JCK_COMPILER_TESTS
Weijun Wang6b8980e2011-09-08 09:04:28 +0800817 JCK_COMPILER_TESTS =
Kelly O'Hair119b6472011-03-22 11:08:09 -0700818endif
819ifndef JCK_RUNTIME_TESTS
Weijun Wang6b8980e2011-09-08 09:04:28 +0800820 JCK_RUNTIME_TESTS =
Kelly O'Hair119b6472011-03-22 11:08:09 -0700821endif
822ifndef JCK_DEVTOOLS_TESTS
Weijun Wang6b8980e2011-09-08 09:04:28 +0800823 JCK_DEVTOOLS_TESTS =
Kelly O'Hair119b6472011-03-22 11:08:09 -0700824endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700825
Kelly O'Hair119b6472011-03-22 11:08:09 -0700826# Generic rule used to run jck tests
827_generic_jck_tests: prep $(PRODUCT_HOME) $(EXCLUDELIST)
828 @$(EXPAND) $(EXCLUDELIST) \
829 | $(CUT) -d' ' -f1 \
830 | $(SED) -e 's@^@Excluding: @'
831 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
832 $(PRODUCT_HOME)/bin/java $(JTJCK_JAVA_ARGS) \
833 -jar "$(JTJCK_JAR)" \
834 $(JTJCK_OPTIONS) \
835 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
836 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
837 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
838 $(TESTDIRS) \
839 ) ; $(BUNDLE_UP_AND_EXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700840
Kelly O'Hair119b6472011-03-22 11:08:09 -0700841# JCK7 compiler tests
842jck7compiler:
843 $(MAKE) UNIQUE_DIR=$@ \
844 JCK_HOME=$(JCK7COMPILER_HOME) \
845 TESTDIRS="$(JCK_COMPILER_TESTS)" \
846 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700847
Kelly O'Hair119b6472011-03-22 11:08:09 -0700848# JCK7 runtime tests
Weijun Wang6b8980e2011-09-08 09:04:28 +0800849jck7runtime:
Kelly O'Hair119b6472011-03-22 11:08:09 -0700850 $(MAKE) UNIQUE_DIR=$@ \
851 JCK_HOME=$(JCK7RUNTIME_HOME) \
852 TESTDIRS="$(JCK_RUNTIME_TESTS)" \
853 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700854
Kelly O'Hair119b6472011-03-22 11:08:09 -0700855# JCK7 devtools tests
Weijun Wang6b8980e2011-09-08 09:04:28 +0800856jck7devtools:
Kelly O'Hair119b6472011-03-22 11:08:09 -0700857 $(MAKE) UNIQUE_DIR=$@ \
858 JCK_HOME=$(JCK7DEVTOOLS_HOME) \
859 TESTDIRS="$(JCK_DEVTOOLS_TESTS)" \
860 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700861
Kelly O'Hair119b6472011-03-22 11:08:09 -0700862# Run all 3 sets of JCK7 tests
863jck_all: jck7runtime jck7devtools jck7compiler
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700864
Kelly O'Hair119b6472011-03-22 11:08:09 -0700865PHONY_LIST += jck_all _generic_jck_tests \
866 jck7compiler jck7runtime jck7devtools
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700867
868################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000869
870# Phony targets (e.g. these are not filenames)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700871.PHONY: all clean prep $(PHONY_LIST)
872
873################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000874