blob: 0fe74310c52a723913b77f846eef342845e2c390 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
Kelly O'Hairfe008ae2010-05-25 15:58:33 -07002# Copyright (c) 1995, 2010, 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
345 JT_HOME = $(SLASH_JAVA)/re/jtreg/4.0/promoted/latest/binaries/jtreg
346 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
Kelly O'Haird1258922009-11-08 15:11:10 -0800356# Samevm settings (default is false)
357ifndef USE_JTREG_SAMEVM
358 USE_JTREG_SAMEVM=false
359endif
360# With samevm, you cannot use -javaoptions?
361ifeq ($(USE_JTREG_SAMEVM),true)
Kelly O'Haird44fe662009-12-11 15:29:22 -0800362 JTREG_SAMEVM_OPTION = -samevm
363 EXTRA_JTREG_OPTIONS += $(JTREG_SAMEVM_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
369# Some tests annoy me and fail frequently
370PROBLEM_LIST=ProblemList.txt
Kelly O'Haird020b042009-11-23 09:51:52 -0800371PROBLEM_LISTS=$(PROBLEM_LIST) $(wildcard closed/$(PROBLEM_LIST))
Kelly O'Haird1258922009-11-08 15:11:10 -0800372EXCLUDELIST=$(ABS_TEST_OUTPUT_DIR)/excludelist.txt
373
374# Create exclude list for this platform and arch
375ifdef NO_EXCLUDES
Kelly O'Hair119b6472011-03-22 11:08:09 -0700376$(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
Kelly O'Haird1258922009-11-08 15:11:10 -0800377 @$(ECHO) "NOTHING_EXCLUDED" > $@
378else
Kelly O'Hair119b6472011-03-22 11:08:09 -0700379$(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
Kelly O'Haird1258922009-11-08 15:11:10 -0800380 @$(RM) $@ $@.temp1 $@.temp2
Kelly O'Haird020b042009-11-23 09:51:52 -0800381 @(($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-all' ) ;\
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700382 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(PLATFORM_OS)' ) ;\
Kelly O'Hair79132952010-03-12 09:03:02 -0800383 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH2)' ) ;\
Kelly O'Haird020b042009-11-23 09:51:52 -0800384 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_VERSION)') ;\
385 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH)' ) ;\
Kelly O'Hair79132952010-03-12 09:03:02 -0800386 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH2)' ) ;\
Kelly O'Haird020b042009-11-23 09:51:52 -0800387 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-all' ) ;\
388 ($(ECHO) "#") ;\
Kelly O'Haird1258922009-11-08 15:11:10 -0800389 ) | $(SED) -e 's@^[\ ]*@@' \
390 | $(EGREP) -v '^#' > $@.temp1
Kelly O'Hair119b6472011-03-22 11:08:09 -0700391 for tdir in $(TESTDIRS) SOLARIS_10_SH_BUG_NO_EMPTY_FORS ; do \
Kelly O'Haird1258922009-11-08 15:11:10 -0800392 ( ( $(CAT) $@.temp1 | $(EGREP) "^$${tdir}" ) ; $(ECHO) "#" ) >> $@.temp2 ; \
393 done
394 @$(ECHO) "# at least one line" >> $@.temp2
395 @( $(EGREP) -v '^#' $@.temp2 ; true ) > $@
396 @$(ECHO) "Excluding list contains `$(EXPAND) $@ | $(WC) -l` items"
397endif
398
Kelly O'Haird020b042009-11-23 09:51:52 -0800399# Select list of directories that exist
400define TestDirs
401$(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
402endef
Kelly O'Haird1258922009-11-08 15:11:10 -0800403# Running batches of tests with or without samevm
404define RunSamevmBatch
Rama Pulavarthi691add82011-03-09 15:47:15 -0800405$(ECHO) "Running tests in samevm mode: $?"
Kelly O'Hair119b6472011-03-22 11:08:09 -0700406$(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" USE_JTREG_SAMEVM=true UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800407endef
408define RunOthervmBatch
Rama Pulavarthi691add82011-03-09 15:47:15 -0800409$(ECHO) "Running tests in othervm mode: $?"
Kelly O'Hair119b6472011-03-22 11:08:09 -0700410$(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" USE_JTREG_SAMEVM=false UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800411endef
412define SummaryInfo
Kelly O'Hair61c09152009-12-09 09:46:57 -0800413$(ECHO) "########################################################"
Kelly O'Haird1258922009-11-08 15:11:10 -0800414$(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
Kelly O'Hair61c09152009-12-09 09:46:57 -0800415$(ECHO) "########################################################"
Kelly O'Haird1258922009-11-08 15:11:10 -0800416endef
417
418# ------------------------------------------------------------------
419
420# Batches of tests (somewhat arbitrary assigments to jdk_* targets)
421JDK_ALL_TARGETS =
422
423# Stable othervm testruns (minus items from PROBLEM_LIST)
424# Using samevm has problems, and doesn't help performance as much as others.
425JDK_ALL_TARGETS += jdk_awt
Rama Pulavarthi691add82011-03-09 15:47:15 -0800426jdk_awt: $(call TestDirs, com/sun/awt java/awt sun/awt)
Kelly O'Haird1258922009-11-08 15:11:10 -0800427 $(call RunOthervmBatch)
428
429# Stable samevm testruns (minus items from PROBLEM_LIST)
430JDK_ALL_TARGETS += jdk_beans1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800431jdk_beans1: $(call TestDirs, \
432 java/beans/beancontext java/beans/PropertyChangeSupport \
Kelly O'Haird1258922009-11-08 15:11:10 -0800433 java/beans/Introspector java/beans/Performance \
Rama Pulavarthi691add82011-03-09 15:47:15 -0800434 java/beans/VetoableChangeSupport java/beans/Statement)
Kelly O'Haird1258922009-11-08 15:11:10 -0800435 $(call RunSamevmBatch)
436
437# Stable othervm testruns (minus items from PROBLEM_LIST)
438# Using samevm has serious problems with these tests
439JDK_ALL_TARGETS += jdk_beans2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800440jdk_beans2: $(call TestDirs, \
441 java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
442 java/beans/PropertyEditor)
Kelly O'Haird1258922009-11-08 15:11:10 -0800443 $(call RunOthervmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800444
445# Stable othervm testruns (minus items from PROBLEM_LIST)
446# Using samevm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800447JDK_ALL_TARGETS += jdk_beans3
Rama Pulavarthi691add82011-03-09 15:47:15 -0800448jdk_beans3: $(call TestDirs, java/beans/XMLEncoder)
Kelly O'Haird1258922009-11-08 15:11:10 -0800449 $(call RunOthervmBatch)
450
Kelly O'Hair61c09152009-12-09 09:46:57 -0800451# All beans tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800452jdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
453 @$(SummaryInfo)
454
Kelly O'Haird1258922009-11-08 15:11:10 -0800455# Stable samevm testruns (minus items from PROBLEM_LIST)
456JDK_ALL_TARGETS += jdk_io
Rama Pulavarthi691add82011-03-09 15:47:15 -0800457jdk_io: $(call TestDirs, java/io)
Kelly O'Haird1258922009-11-08 15:11:10 -0800458 $(call RunSamevmBatch)
459
460# Stable samevm testruns (minus items from PROBLEM_LIST)
461JDK_ALL_TARGETS += jdk_lang
Rama Pulavarthi691add82011-03-09 15:47:15 -0800462jdk_lang: $(call TestDirs, java/lang)
Kelly O'Haird1258922009-11-08 15:11:10 -0800463 $(call RunSamevmBatch)
464
465# Stable othervm testruns (minus items from PROBLEM_LIST)
466# Using samevm has serious problems with these tests
467JDK_ALL_TARGETS += jdk_management1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800468jdk_management1: $(call TestDirs, javax/management)
Kelly O'Haird1258922009-11-08 15:11:10 -0800469 $(call RunOthervmBatch)
470
471# Stable othervm testruns (minus items from PROBLEM_LIST)
472# Using samevm has serious problems with these tests
473JDK_ALL_TARGETS += jdk_management2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800474jdk_management2: $(call TestDirs, com/sun/jmx com/sun/management sun/management)
Kelly O'Haird1258922009-11-08 15:11:10 -0800475 $(call RunOthervmBatch)
476
Kelly O'Hair61c09152009-12-09 09:46:57 -0800477# All management tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800478jdk_management: jdk_management1 jdk_management2
479 @$(SummaryInfo)
480
Kelly O'Haird1258922009-11-08 15:11:10 -0800481# Stable samevm testruns (minus items from PROBLEM_LIST)
482JDK_ALL_TARGETS += jdk_math
Rama Pulavarthi691add82011-03-09 15:47:15 -0800483jdk_math: $(call TestDirs, java/math)
Kelly O'Haird1258922009-11-08 15:11:10 -0800484 $(call RunSamevmBatch)
485
486# Stable samevm testruns (minus items from PROBLEM_LIST)
487JDK_ALL_TARGETS += jdk_misc
Rama Pulavarthi691add82011-03-09 15:47:15 -0800488jdk_misc: $(call TestDirs, \
489 demo javax/imageio javax/naming javax/print javax/script \
Kelly O'Haird1258922009-11-08 15:11:10 -0800490 javax/smartcardio javax/sound com/sun/java com/sun/jndi \
Rama Pulavarthi691add82011-03-09 15:47:15 -0800491 com/sun/org com/sun/xml sun/misc sun/pisces)
Kelly O'Haird1258922009-11-08 15:11:10 -0800492 $(call RunSamevmBatch)
493
494# Stable samevm testruns (minus items from PROBLEM_LIST)
495JDK_ALL_TARGETS += jdk_net
Rama Pulavarthi691add82011-03-09 15:47:15 -0800496jdk_net: $(call TestDirs, com/sun/net java/net sun/net)
Kelly O'Haird1258922009-11-08 15:11:10 -0800497 $(call RunSamevmBatch)
498
499# Stable samevm testruns (minus items from PROBLEM_LIST)
500JDK_ALL_TARGETS += jdk_nio1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800501jdk_nio1: $(call TestDirs, java/nio/file)
Kelly O'Haird1258922009-11-08 15:11:10 -0800502 $(call RunSamevmBatch)
503
Alan Bateman670501c2010-06-23 20:19:29 +0100504# Stable samevm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800505JDK_ALL_TARGETS += jdk_nio2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800506jdk_nio2: $(call TestDirs, java/nio/Buffer java/nio/ByteOrder \
507 java/nio/channels java/nio/BufferPoolMXBean java/nio/MappedByteBuffer)
Kelly O'Haird7382802010-05-20 13:57:58 -0700508 $(call SharedLibraryPermissions,java/nio/channels)
Alan Bateman670501c2010-06-23 20:19:29 +0100509 $(call RunSamevmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800510
Alan Bateman670501c2010-06-23 20:19:29 +0100511# Stable samevm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800512JDK_ALL_TARGETS += jdk_nio3
Rama Pulavarthi691add82011-03-09 15:47:15 -0800513jdk_nio3: $(call TestDirs, com/sun/nio sun/nio)
Alan Bateman670501c2010-06-23 20:19:29 +0100514 $(call RunSamevmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800515
Kelly O'Hair61c09152009-12-09 09:46:57 -0800516# All nio tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800517jdk_nio: jdk_nio1 jdk_nio2 jdk_nio3
518 @$(SummaryInfo)
519
Kelly O'Haird1258922009-11-08 15:11:10 -0800520# Stable othervm testruns (minus items from PROBLEM_LIST)
521# Using samevm has serious problems with these tests
522JDK_ALL_TARGETS += jdk_rmi
Rama Pulavarthi691add82011-03-09 15:47:15 -0800523jdk_rmi: $(call TestDirs, java/rmi javax/rmi sun/rmi)
Kelly O'Haird1258922009-11-08 15:11:10 -0800524 $(call RunOthervmBatch)
525
526# Stable samevm testruns (minus items from PROBLEM_LIST)
527JDK_ALL_TARGETS += jdk_security1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800528jdk_security1: $(call TestDirs, java/security)
Kelly O'Haird1258922009-11-08 15:11:10 -0800529 $(call RunSamevmBatch)
530
531# Stable othervm testruns (minus items from PROBLEM_LIST)
532# Using samevm has serious problems with these tests
533JDK_ALL_TARGETS += jdk_security2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800534jdk_security2: $(call TestDirs, javax/crypto com/sun/crypto)
Kelly O'Haird1258922009-11-08 15:11:10 -0800535 $(call RunOthervmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800536
537# Stable othervm testruns (minus items from PROBLEM_LIST)
538# Using samevm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800539JDK_ALL_TARGETS += jdk_security3
Rama Pulavarthi691add82011-03-09 15:47:15 -0800540jdk_security3: $(call TestDirs, com/sun/security lib/security \
541 javax/security sun/security)
Kelly O'Haird7382802010-05-20 13:57:58 -0700542 $(call SharedLibraryPermissions,sun/security)
Kelly O'Haird1258922009-11-08 15:11:10 -0800543 $(call RunOthervmBatch)
544
Kelly O'Hair61c09152009-12-09 09:46:57 -0800545# All security tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800546jdk_security: jdk_security1 jdk_security2 jdk_security3
547 @$(SummaryInfo)
548
Kelly O'Haird1258922009-11-08 15:11:10 -0800549# Stable othervm testruns (minus items from PROBLEM_LIST)
550# Using samevm has problems, and doesn't help performance as much as others.
551JDK_ALL_TARGETS += jdk_swing
Rama Pulavarthi691add82011-03-09 15:47:15 -0800552jdk_swing: $(call TestDirs, javax/swing sun/java2d)
Kelly O'Haird1258922009-11-08 15:11:10 -0800553 $(call RunOthervmBatch)
554
555# Stable samevm testruns (minus items from PROBLEM_LIST)
556JDK_ALL_TARGETS += jdk_text
Rama Pulavarthi691add82011-03-09 15:47:15 -0800557jdk_text: $(call TestDirs, java/text sun/text)
Kelly O'Haird1258922009-11-08 15:11:10 -0800558 $(call RunSamevmBatch)
559
Kelly O'Hair61c09152009-12-09 09:46:57 -0800560# Stable samevm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800561JDK_ALL_TARGETS += jdk_tools1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800562jdk_tools1: $(call TestDirs, com/sun/jdi)
Kelly O'Hair547328d2009-11-25 08:24:58 -0800563 $(call RunSamevmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800564
565# Stable othervm testruns (minus items from PROBLEM_LIST)
566# Using samevm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800567JDK_ALL_TARGETS += jdk_tools2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800568jdk_tools2: $(call TestDirs, \
569 com/sun/tools sun/jvmstat sun/tools tools vm \
570 com/sun/servicetag com/sun/tracing)
Kelly O'Haird7382802010-05-20 13:57:58 -0700571 $(call SharedLibraryPermissions,tools/launcher)
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700572 $(call RunSamevmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800573
Kelly O'Hair61c09152009-12-09 09:46:57 -0800574# All tools tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800575jdk_tools: jdk_tools1 jdk_tools2
576 @$(SummaryInfo)
577
Kelly O'Haird1258922009-11-08 15:11:10 -0800578# Stable samevm testruns (minus items from PROBLEM_LIST)
579JDK_ALL_TARGETS += jdk_util
Rama Pulavarthi691add82011-03-09 15:47:15 -0800580jdk_util: $(call TestDirs, java/util sun/util)
Kelly O'Haird1258922009-11-08 15:11:10 -0800581 $(call RunSamevmBatch)
582
583# ------------------------------------------------------------------
584
585# Run all tests
Kelly O'Hair61c09152009-12-09 09:46:57 -0800586FILTER_OUT_LIST=jdk_awt jdk_rmi jdk_swing
587JDK_ALL_STABLE_TARGETS := $(filter-out $(FILTER_OUT_LIST), $(JDK_ALL_TARGETS))
588jdk_all: $(JDK_ALL_STABLE_TARGETS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800589 @$(SummaryInfo)
590
591# These are all phony targets
592PHONY_LIST += $(JDK_ALL_TARGETS)
593
594# ------------------------------------------------------------------
595
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700596# Default JTREG to run (win32 script works for everybody)
597JTREG = $(JT_HOME)/win32/bin/jtreg
Kelly O'Haird1258922009-11-08 15:11:10 -0800598# Add any extra options (samevm etc.)
599JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
600# Only run automatic tests
601JTREG_BASIC_OPTIONS += -a
Kelly O'Haird44fe662009-12-11 15:29:22 -0800602# Always turn on assertions
603JTREG_ASSERT_OPTION = -ea -esa
604JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800605# Report details on all failed or error tests, times too
606JTREG_BASIC_OPTIONS += -v:fail,error,time
607# Retain all files for failing tests
608JTREG_BASIC_OPTIONS += -retain:fail,error
609# Ignore tests are not run and completely silent about it
Kelly O'Haird44fe662009-12-11 15:29:22 -0800610JTREG_IGNORE_OPTION = -ignore:quiet
611JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800612# Multiple by 4 the timeout numbers
Kelly O'Haird44fe662009-12-11 15:29:22 -0800613JTREG_TIMEOUT_OPTION = -timeoutFactor:4
614JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800615# Boost the max memory for jtreg to avoid gc thrashing
Kelly O'Haird44fe662009-12-11 15:29:22 -0800616JTREG_MEMORY_OPTION = -J-Xmx512m
617JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700618
Kelly O'Haird1258922009-11-08 15:11:10 -0800619# Make sure jtreg exists
620$(JTREG): $(JT_HOME)
621
622# Run jtreg
623jtreg_tests: prep $(PRODUCT_HOME) $(JTREG) $(EXCLUDELIST)
624 @$(EXPAND) $(EXCLUDELIST) \
625 | $(CUT) -d' ' -f1 \
626 | $(SED) -e 's@^@Excluding: @'
627 ( \
628 ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)"); \
629 export JT_HOME; \
Kelly O'Haird1258922009-11-08 15:11:10 -0800630 $(shell $(GETMIXEDPATH) "$(JTREG)") \
631 $(JTREG_BASIC_OPTIONS) \
632 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
633 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
634 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
635 -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \
636 $(JTREG_TEST_OPTIONS) \
637 $(TESTDIRS) \
638 ) ; $(BUNDLE_UP_AND_EXIT) \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800639 ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700640
Kelly O'Haird7382802010-05-20 13:57:58 -0700641# Rule that may change execute permissions on shared library files.
642# Files in repositories should never have execute permissions, but there
643# are some tests that have pre-built shared libraries, and these windows
644# dll files must have execute permission. Adding execute permission
645# may happen automatically on windows when using certain versions of mercurial
646# but it cannot be guaranteed. And blindly adding execute permission might
647# be seen as a mercurial 'change', so we avoid adding execute permission to
648# repository files. But testing from a plain source tree needs the chmod a+rx.
649# Used on select directories and applying the chmod to all shared libraries
650# not just dll files. On windows, this may not work with MKS if the files
651# were installed with CYGWIN unzip or untar (MKS chmod may not do anything).
652# And with CYGWIN and sshd service, you may need CYGWIN=ntsec for this to work.
653#
654shared_library_permissions: $(SHARED_LIBRARY_DIR)
655 if [ ! -d $(TEST_ROOT)/../.hg ] ; then \
656 $(FIND) $< \( -name \*.dll -o -name \*.DLL -o -name \*.so \) \
657 -exec $(CHMOD) a+rx {} \; ; \
658 fi
659
660PHONY_LIST += jtreg_tests shared_library_permissions
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700661
662################################################################
663
664# packtest
665
666# Expect JPRT to set JPRT_PACKTEST_HOME.
667PACKTEST_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/packtest
668ifdef JPRT_PACKTEST_HOME
669 PACKTEST_HOME = $(JPRT_PACKTEST_HOME)
670endif
671
672packtest: prep $(PACKTEST_HOME)/ptest $(PRODUCT_HOME)
673 ( $(CD) $(PACKTEST_HOME) && \
674 $(PACKTEST_HOME)/ptest \
675 -t "$(PRODUCT_HOME)" \
676 $(PACKTEST_STRESS_OPTION) \
677 $(EXTRA_PACKTEST_OPTIONS) \
678 -W $(ABS_TEST_OUTPUT_DIR) \
679 $(JAVA_ARGS:%=-J %) \
680 $(JAVA_VM_ARGS:%=-J %) \
681 ) ; $(BUNDLE_UP_AND_EXIT)
682
683packtest_stress: PACKTEST_STRESS_OPTION=-s
684packtest_stress: packtest
685
686PHONY_LIST += packtest packtest_stress
687
688################################################################
689
Mandy Chunge2f72482009-05-26 17:47:57 -0700690# perftest to collect statistics
691
692# Expect JPRT to set JPRT_PACKTEST_HOME.
Kelly O'Haird7382802010-05-20 13:57:58 -0700693PERFTEST_HOME = $(TEST_ROOT)/perf
Mandy Chunge2f72482009-05-26 17:47:57 -0700694ifdef JPRT_PERFTEST_HOME
695 PERFTEST_HOME = $(JPRT_PERFTEST_HOME)
696endif
697
698perftest: ( $(PERFTEST_HOME)/perftest \
699 -t $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
700 -w $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)") \
701 -h $(PERFTEST_HOME) \
702 ) ; $(BUNDLE_UP_AND_EXIT)
703
704
705PHONY_LIST += perftest
706
707################################################################
708
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700709# vmsqe tests
710
711# Expect JPRT to set JPRT_VMSQE_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700712VMSQE_HOME = $(SLASH_JAVA)/sqe/comp/vm/testbase/sqe/vm/current/build/latest/vm
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700713ifdef JPRT_VMSQE_HOME
714 VMSQE_HOME = $(JPRT_VMSQE_HOME)
715endif
716
717# Expect JPRT to set JPRT_RUNVMSQE_HOME.
718RUNVMSQE_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/runvmsqe
719ifdef JPRT_RUNVMSQE_HOME
720 RUNVMSQE_HOME = $(JPRT_RUNVMSQE_HOME)
721endif
722
723# Expect JPRT to set JPRT_TONGA3_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700724TONGA3_HOME = $(SLASH_JAVA)/sqe/tools/gtee/harness/tonga
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700725ifdef JPRT_TONGA3_HOME
726 TONGA3_HOME = $(JPRT_TONGA3_HOME)
727endif
728
729RUNVMSQE_BIN = $(RUNVMSQE_HOME)/bin/runvmsqe
730
731vmsqe_tests: prep $(VMSQE_HOME)/vm $(TONGA3_HOME) $(RUNVMSQE_BIN) $(PRODUCT_HOME)
732 $(RM) -r $(ABS_TEST_OUTPUT_DIR)/vmsqe
733 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
734 $(RUNVMSQE_BIN) \
735 -jdk "$(PRODUCT_HOME)" \
736 -o "$(ABS_TEST_OUTPUT_DIR)/vmsqe" \
737 -testbase "$(VMSQE_HOME)/vm" \
738 -tonga "$(TONGA3_HOME)" \
739 -tongajdk "$(ALT_BOOTDIR)" \
740 $(JAVA_ARGS) \
741 $(JAVA_VM_ARGS) \
742 $(RUNVMSQE_TEST_OPTION) \
743 $(EXTRA_RUNVMSQE_OPTIONS) \
744 ) ; $(BUNDLE_UP_AND_EXIT)
745
746vmsqe_jdwp: RUNVMSQE_TEST_OPTION=-jdwp
747vmsqe_jdwp: vmsqe_tests
748
749vmsqe_jdi: RUNVMSQE_TEST_OPTION=-jdi
750vmsqe_jdi: vmsqe_tests
751
752vmsqe_jdb: RUNVMSQE_TEST_OPTION=-jdb
753vmsqe_jdb: vmsqe_tests
754
755vmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
756vmsqe_quick-jdi: vmsqe_tests
757
758vmsqe_sajdi: RUNVMSQE_TEST_OPTION=-sajdi
759vmsqe_sajdi: vmsqe_tests
760
761vmsqe_jvmti: RUNVMSQE_TEST_OPTION=-jvmti
762vmsqe_jvmti: vmsqe_tests
763
764vmsqe_hprof: RUNVMSQE_TEST_OPTION=-hprof
765vmsqe_hprof: vmsqe_tests
766
767vmsqe_monitoring: RUNVMSQE_TEST_OPTION=-monitoring
768vmsqe_monitoring: vmsqe_tests
769
770PHONY_LIST += vmsqe_jdwp vmsqe_jdi vmsqe_jdb vmsqe_quick-jdi vmsqe_sajdi \
771 vmsqe_jvmti vmsqe_hprof vmsqe_monitoring vmsqe_tests
772
773################################################################
774
775# jck tests
776
Kelly O'Hair119b6472011-03-22 11:08:09 -0700777# Default is to use jck 7 from /java/re
778JCK7_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/7/promoted/latest/binaries
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700779
780# Expect JPRT to set JPRT_JCK7COMPILER_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700781JCK7COMPILER_HOME = $(JCK7_DEFAULT_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700782ifdef JPRT_JCK7COMPILER_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700783 JCK7COMPILER_HOME = $(JPRT_JCK7COMPILER_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700784endif
785
786# Expect JPRT to set JPRT_JCK7RUNTIME_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700787JCK7RUNTIME_HOME = $(JCK7_DEFAULT_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700788ifdef JPRT_JCK7RUNTIME_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700789 JCK7RUNTIME_HOME = $(JPRT_JCK7RUNTIME_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700790endif
791
792# Expect JPRT to set JPRT_JCK7DEVTOOLS_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700793JCK7DEVTOOLS_HOME = $(JCK7_DEFAULT_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700794ifdef JPRT_JCK7DEVTOOLS_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700795 JCK7DEVTOOLS_HOME = $(JPRT_JCK7DEVTOOLS_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700796endif
797
Kelly O'Hair119b6472011-03-22 11:08:09 -0700798# The jtjck.jar utility to use to run the tests
799JTJCK_JAR = $(JCK_HOME)/lib/jtjck.jar
800JTJCK_JAVA_ARGS = -XX:MaxPermSize=256m -Xmx512m
801JTJCK_OPTIONS = -headless -v
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700802
Kelly O'Hair119b6472011-03-22 11:08:09 -0700803# Default tests to run
804ifndef JCK_COMPILER_TESTS
805 JCK_COMPILER_TESTS =
806endif
807ifndef JCK_RUNTIME_TESTS
808 JCK_RUNTIME_TESTS =
809endif
810ifndef JCK_DEVTOOLS_TESTS
811 JCK_DEVTOOLS_TESTS =
812endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700813
Kelly O'Hair119b6472011-03-22 11:08:09 -0700814# Generic rule used to run jck tests
815_generic_jck_tests: prep $(PRODUCT_HOME) $(EXCLUDELIST)
816 @$(EXPAND) $(EXCLUDELIST) \
817 | $(CUT) -d' ' -f1 \
818 | $(SED) -e 's@^@Excluding: @'
819 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
820 $(PRODUCT_HOME)/bin/java $(JTJCK_JAVA_ARGS) \
821 -jar "$(JTJCK_JAR)" \
822 $(JTJCK_OPTIONS) \
823 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
824 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
825 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
826 $(TESTDIRS) \
827 ) ; $(BUNDLE_UP_AND_EXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700828
Kelly O'Hair119b6472011-03-22 11:08:09 -0700829# JCK7 compiler tests
830jck7compiler:
831 $(MAKE) UNIQUE_DIR=$@ \
832 JCK_HOME=$(JCK7COMPILER_HOME) \
833 TESTDIRS="$(JCK_COMPILER_TESTS)" \
834 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700835
Kelly O'Hair119b6472011-03-22 11:08:09 -0700836# JCK7 runtime tests
837jck7runtime:
838 $(MAKE) UNIQUE_DIR=$@ \
839 JCK_HOME=$(JCK7RUNTIME_HOME) \
840 TESTDIRS="$(JCK_RUNTIME_TESTS)" \
841 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700842
Kelly O'Hair119b6472011-03-22 11:08:09 -0700843# JCK7 devtools tests
844jck7devtools:
845 $(MAKE) UNIQUE_DIR=$@ \
846 JCK_HOME=$(JCK7DEVTOOLS_HOME) \
847 TESTDIRS="$(JCK_DEVTOOLS_TESTS)" \
848 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700849
Kelly O'Hair119b6472011-03-22 11:08:09 -0700850# Run all 3 sets of JCK7 tests
851jck_all: jck7runtime jck7devtools jck7compiler
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700852
Kelly O'Hair119b6472011-03-22 11:08:09 -0700853PHONY_LIST += jck_all _generic_jck_tests \
854 jck7compiler jck7runtime jck7devtools
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700855
856################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000857
858# Phony targets (e.g. these are not filenames)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700859.PHONY: all clean prep $(PHONY_LIST)
860
861################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000862