blob: cf1f4d9030e375268c6291a1c819ea7e7900b1f3 [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
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 \
Mandy Chung793f1072011-03-29 15:50:55 -0700507 java/nio/channels 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
Chris Hegartyd97cf812011-06-23 13:00:14 +0100513jdk_nio3: $(call TestDirs, 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
Chris Hegartyd97cf812011-06-23 13:00:14 +0100520# Stable samevm testruns (minus items from PROBLEM_LIST)
521jdk_sctp: $(call TestDirs, com/sun/nio/sctp)
522 $(call RunSamevmBatch)
523
Kelly O'Haird1258922009-11-08 15:11:10 -0800524# Stable othervm testruns (minus items from PROBLEM_LIST)
525# Using samevm has serious problems with these tests
526JDK_ALL_TARGETS += jdk_rmi
Rama Pulavarthi691add82011-03-09 15:47:15 -0800527jdk_rmi: $(call TestDirs, java/rmi javax/rmi sun/rmi)
Kelly O'Haird1258922009-11-08 15:11:10 -0800528 $(call RunOthervmBatch)
529
530# Stable samevm testruns (minus items from PROBLEM_LIST)
531JDK_ALL_TARGETS += jdk_security1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800532jdk_security1: $(call TestDirs, java/security)
Kelly O'Haird1258922009-11-08 15:11:10 -0800533 $(call RunSamevmBatch)
534
535# Stable othervm testruns (minus items from PROBLEM_LIST)
536# Using samevm has serious problems with these tests
537JDK_ALL_TARGETS += jdk_security2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800538jdk_security2: $(call TestDirs, javax/crypto com/sun/crypto)
Weijun Wang6619d1a2011-06-23 09:27:11 +0800539 $(call RunSamevmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800540
541# Stable othervm testruns (minus items from PROBLEM_LIST)
542# Using samevm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800543JDK_ALL_TARGETS += jdk_security3
Rama Pulavarthi691add82011-03-09 15:47:15 -0800544jdk_security3: $(call TestDirs, com/sun/security lib/security \
545 javax/security sun/security)
Kelly O'Haird7382802010-05-20 13:57:58 -0700546 $(call SharedLibraryPermissions,sun/security)
Kelly O'Haird1258922009-11-08 15:11:10 -0800547 $(call RunOthervmBatch)
548
Kelly O'Hair61c09152009-12-09 09:46:57 -0800549# All security tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800550jdk_security: jdk_security1 jdk_security2 jdk_security3
551 @$(SummaryInfo)
552
Kelly O'Haird1258922009-11-08 15:11:10 -0800553# Stable othervm testruns (minus items from PROBLEM_LIST)
554# Using samevm has problems, and doesn't help performance as much as others.
555JDK_ALL_TARGETS += jdk_swing
Rama Pulavarthi691add82011-03-09 15:47:15 -0800556jdk_swing: $(call TestDirs, javax/swing sun/java2d)
Kelly O'Haird1258922009-11-08 15:11:10 -0800557 $(call RunOthervmBatch)
558
559# Stable samevm testruns (minus items from PROBLEM_LIST)
560JDK_ALL_TARGETS += jdk_text
Rama Pulavarthi691add82011-03-09 15:47:15 -0800561jdk_text: $(call TestDirs, java/text sun/text)
Kelly O'Haird1258922009-11-08 15:11:10 -0800562 $(call RunSamevmBatch)
563
Kelly O'Hair61c09152009-12-09 09:46:57 -0800564# Stable samevm testruns (minus items from PROBLEM_LIST)
Kelly O'Haird1258922009-11-08 15:11:10 -0800565JDK_ALL_TARGETS += jdk_tools1
Rama Pulavarthi691add82011-03-09 15:47:15 -0800566jdk_tools1: $(call TestDirs, com/sun/jdi)
Kelly O'Hair547328d2009-11-25 08:24:58 -0800567 $(call RunSamevmBatch)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800568
569# Stable othervm testruns (minus items from PROBLEM_LIST)
570# Using samevm has serious problems with these tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800571JDK_ALL_TARGETS += jdk_tools2
Rama Pulavarthi691add82011-03-09 15:47:15 -0800572jdk_tools2: $(call TestDirs, \
573 com/sun/tools sun/jvmstat sun/tools tools vm \
574 com/sun/servicetag com/sun/tracing)
Kelly O'Haird7382802010-05-20 13:57:58 -0700575 $(call SharedLibraryPermissions,tools/launcher)
Kelly O'Hairb383b9b2010-06-20 14:53:36 -0700576 $(call RunSamevmBatch)
Kelly O'Haird1258922009-11-08 15:11:10 -0800577
Kelly O'Hair61c09152009-12-09 09:46:57 -0800578# All tools tests
Kelly O'Haird020b042009-11-23 09:51:52 -0800579jdk_tools: jdk_tools1 jdk_tools2
580 @$(SummaryInfo)
581
Kelly O'Haird1258922009-11-08 15:11:10 -0800582# Stable samevm testruns (minus items from PROBLEM_LIST)
583JDK_ALL_TARGETS += jdk_util
Rama Pulavarthi691add82011-03-09 15:47:15 -0800584jdk_util: $(call TestDirs, java/util sun/util)
Kelly O'Haird1258922009-11-08 15:11:10 -0800585 $(call RunSamevmBatch)
586
587# ------------------------------------------------------------------
588
589# Run all tests
Kelly O'Hair61c09152009-12-09 09:46:57 -0800590FILTER_OUT_LIST=jdk_awt jdk_rmi jdk_swing
591JDK_ALL_STABLE_TARGETS := $(filter-out $(FILTER_OUT_LIST), $(JDK_ALL_TARGETS))
592jdk_all: $(JDK_ALL_STABLE_TARGETS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800593 @$(SummaryInfo)
594
595# These are all phony targets
596PHONY_LIST += $(JDK_ALL_TARGETS)
597
598# ------------------------------------------------------------------
599
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700600# Default JTREG to run (win32 script works for everybody)
601JTREG = $(JT_HOME)/win32/bin/jtreg
Kelly O'Haird1258922009-11-08 15:11:10 -0800602# Add any extra options (samevm etc.)
603JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
604# Only run automatic tests
605JTREG_BASIC_OPTIONS += -a
Kelly O'Haird44fe662009-12-11 15:29:22 -0800606# Always turn on assertions
607JTREG_ASSERT_OPTION = -ea -esa
608JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800609# Report details on all failed or error tests, times too
610JTREG_BASIC_OPTIONS += -v:fail,error,time
611# Retain all files for failing tests
612JTREG_BASIC_OPTIONS += -retain:fail,error
613# Ignore tests are not run and completely silent about it
Kelly O'Haird44fe662009-12-11 15:29:22 -0800614JTREG_IGNORE_OPTION = -ignore:quiet
615JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
Kelly O'Hair61c09152009-12-09 09:46:57 -0800616# Multiple by 4 the timeout numbers
Kelly O'Haird44fe662009-12-11 15:29:22 -0800617JTREG_TIMEOUT_OPTION = -timeoutFactor:4
618JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
Kelly O'Haird1258922009-11-08 15:11:10 -0800619# Boost the max memory for jtreg to avoid gc thrashing
Kelly O'Haird44fe662009-12-11 15:29:22 -0800620JTREG_MEMORY_OPTION = -J-Xmx512m
621JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700622
Kelly O'Haird1258922009-11-08 15:11:10 -0800623# Make sure jtreg exists
624$(JTREG): $(JT_HOME)
625
626# Run jtreg
627jtreg_tests: prep $(PRODUCT_HOME) $(JTREG) $(EXCLUDELIST)
628 @$(EXPAND) $(EXCLUDELIST) \
629 | $(CUT) -d' ' -f1 \
630 | $(SED) -e 's@^@Excluding: @'
631 ( \
632 ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)"); \
633 export JT_HOME; \
Kelly O'Haird1258922009-11-08 15:11:10 -0800634 $(shell $(GETMIXEDPATH) "$(JTREG)") \
635 $(JTREG_BASIC_OPTIONS) \
636 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
637 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
638 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
639 -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \
640 $(JTREG_TEST_OPTIONS) \
641 $(TESTDIRS) \
642 ) ; $(BUNDLE_UP_AND_EXIT) \
Kelly O'Hair0ce235a2009-12-01 08:51:16 -0800643 ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700644
Kelly O'Haird7382802010-05-20 13:57:58 -0700645# Rule that may change execute permissions on shared library files.
646# Files in repositories should never have execute permissions, but there
647# are some tests that have pre-built shared libraries, and these windows
648# dll files must have execute permission. Adding execute permission
649# may happen automatically on windows when using certain versions of mercurial
650# but it cannot be guaranteed. And blindly adding execute permission might
651# be seen as a mercurial 'change', so we avoid adding execute permission to
652# repository files. But testing from a plain source tree needs the chmod a+rx.
653# Used on select directories and applying the chmod to all shared libraries
654# not just dll files. On windows, this may not work with MKS if the files
655# were installed with CYGWIN unzip or untar (MKS chmod may not do anything).
656# And with CYGWIN and sshd service, you may need CYGWIN=ntsec for this to work.
657#
658shared_library_permissions: $(SHARED_LIBRARY_DIR)
659 if [ ! -d $(TEST_ROOT)/../.hg ] ; then \
660 $(FIND) $< \( -name \*.dll -o -name \*.DLL -o -name \*.so \) \
661 -exec $(CHMOD) a+rx {} \; ; \
662 fi
663
664PHONY_LIST += jtreg_tests shared_library_permissions
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700665
666################################################################
667
668# packtest
669
670# Expect JPRT to set JPRT_PACKTEST_HOME.
671PACKTEST_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/packtest
672ifdef JPRT_PACKTEST_HOME
673 PACKTEST_HOME = $(JPRT_PACKTEST_HOME)
674endif
675
676packtest: prep $(PACKTEST_HOME)/ptest $(PRODUCT_HOME)
677 ( $(CD) $(PACKTEST_HOME) && \
678 $(PACKTEST_HOME)/ptest \
679 -t "$(PRODUCT_HOME)" \
680 $(PACKTEST_STRESS_OPTION) \
681 $(EXTRA_PACKTEST_OPTIONS) \
682 -W $(ABS_TEST_OUTPUT_DIR) \
683 $(JAVA_ARGS:%=-J %) \
684 $(JAVA_VM_ARGS:%=-J %) \
685 ) ; $(BUNDLE_UP_AND_EXIT)
686
687packtest_stress: PACKTEST_STRESS_OPTION=-s
688packtest_stress: packtest
689
690PHONY_LIST += packtest packtest_stress
691
692################################################################
693
Mandy Chung793f1072011-03-29 15:50:55 -0700694# perftest to collect statistics
Mandy Chunge2f72482009-05-26 17:47:57 -0700695
696# Expect JPRT to set JPRT_PACKTEST_HOME.
Kelly O'Haird7382802010-05-20 13:57:58 -0700697PERFTEST_HOME = $(TEST_ROOT)/perf
Mandy Chunge2f72482009-05-26 17:47:57 -0700698ifdef JPRT_PERFTEST_HOME
699 PERFTEST_HOME = $(JPRT_PERFTEST_HOME)
700endif
701
702perftest: ( $(PERFTEST_HOME)/perftest \
703 -t $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
704 -w $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)") \
705 -h $(PERFTEST_HOME) \
706 ) ; $(BUNDLE_UP_AND_EXIT)
707
708
709PHONY_LIST += perftest
710
711################################################################
712
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700713# vmsqe tests
714
715# Expect JPRT to set JPRT_VMSQE_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700716VMSQE_HOME = $(SLASH_JAVA)/sqe/comp/vm/testbase/sqe/vm/current/build/latest/vm
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700717ifdef JPRT_VMSQE_HOME
718 VMSQE_HOME = $(JPRT_VMSQE_HOME)
719endif
720
721# Expect JPRT to set JPRT_RUNVMSQE_HOME.
722RUNVMSQE_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/runvmsqe
723ifdef JPRT_RUNVMSQE_HOME
724 RUNVMSQE_HOME = $(JPRT_RUNVMSQE_HOME)
725endif
726
727# Expect JPRT to set JPRT_TONGA3_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700728TONGA3_HOME = $(SLASH_JAVA)/sqe/tools/gtee/harness/tonga
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700729ifdef JPRT_TONGA3_HOME
730 TONGA3_HOME = $(JPRT_TONGA3_HOME)
731endif
732
733RUNVMSQE_BIN = $(RUNVMSQE_HOME)/bin/runvmsqe
734
735vmsqe_tests: prep $(VMSQE_HOME)/vm $(TONGA3_HOME) $(RUNVMSQE_BIN) $(PRODUCT_HOME)
736 $(RM) -r $(ABS_TEST_OUTPUT_DIR)/vmsqe
737 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
738 $(RUNVMSQE_BIN) \
739 -jdk "$(PRODUCT_HOME)" \
740 -o "$(ABS_TEST_OUTPUT_DIR)/vmsqe" \
741 -testbase "$(VMSQE_HOME)/vm" \
742 -tonga "$(TONGA3_HOME)" \
743 -tongajdk "$(ALT_BOOTDIR)" \
744 $(JAVA_ARGS) \
745 $(JAVA_VM_ARGS) \
746 $(RUNVMSQE_TEST_OPTION) \
747 $(EXTRA_RUNVMSQE_OPTIONS) \
748 ) ; $(BUNDLE_UP_AND_EXIT)
749
750vmsqe_jdwp: RUNVMSQE_TEST_OPTION=-jdwp
751vmsqe_jdwp: vmsqe_tests
752
753vmsqe_jdi: RUNVMSQE_TEST_OPTION=-jdi
754vmsqe_jdi: vmsqe_tests
755
756vmsqe_jdb: RUNVMSQE_TEST_OPTION=-jdb
757vmsqe_jdb: vmsqe_tests
758
759vmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
760vmsqe_quick-jdi: vmsqe_tests
761
762vmsqe_sajdi: RUNVMSQE_TEST_OPTION=-sajdi
763vmsqe_sajdi: vmsqe_tests
764
765vmsqe_jvmti: RUNVMSQE_TEST_OPTION=-jvmti
766vmsqe_jvmti: vmsqe_tests
767
768vmsqe_hprof: RUNVMSQE_TEST_OPTION=-hprof
769vmsqe_hprof: vmsqe_tests
770
771vmsqe_monitoring: RUNVMSQE_TEST_OPTION=-monitoring
772vmsqe_monitoring: vmsqe_tests
773
774PHONY_LIST += vmsqe_jdwp vmsqe_jdi vmsqe_jdb vmsqe_quick-jdi vmsqe_sajdi \
775 vmsqe_jvmti vmsqe_hprof vmsqe_monitoring vmsqe_tests
776
777################################################################
778
779# jck tests
780
Kelly O'Hair119b6472011-03-22 11:08:09 -0700781# Default is to use jck 7 from /java/re
782JCK7_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/7/promoted/latest/binaries
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700783
784# Expect JPRT to set JPRT_JCK7COMPILER_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700785JCK7COMPILER_HOME = $(JCK7_DEFAULT_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700786ifdef JPRT_JCK7COMPILER_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700787 JCK7COMPILER_HOME = $(JPRT_JCK7COMPILER_HOME)/JCK-compiler-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700788endif
789
790# Expect JPRT to set JPRT_JCK7RUNTIME_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700791JCK7RUNTIME_HOME = $(JCK7_DEFAULT_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700792ifdef JPRT_JCK7RUNTIME_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700793 JCK7RUNTIME_HOME = $(JPRT_JCK7RUNTIME_HOME)/JCK-runtime-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700794endif
795
796# Expect JPRT to set JPRT_JCK7DEVTOOLS_HOME.
Kelly O'Hair119b6472011-03-22 11:08:09 -0700797JCK7DEVTOOLS_HOME = $(JCK7_DEFAULT_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700798ifdef JPRT_JCK7DEVTOOLS_HOME
Kelly O'Hair119b6472011-03-22 11:08:09 -0700799 JCK7DEVTOOLS_HOME = $(JPRT_JCK7DEVTOOLS_HOME)/JCK-devtools-7
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700800endif
801
Kelly O'Hair119b6472011-03-22 11:08:09 -0700802# The jtjck.jar utility to use to run the tests
803JTJCK_JAR = $(JCK_HOME)/lib/jtjck.jar
804JTJCK_JAVA_ARGS = -XX:MaxPermSize=256m -Xmx512m
805JTJCK_OPTIONS = -headless -v
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700806
Kelly O'Hair119b6472011-03-22 11:08:09 -0700807# Default tests to run
808ifndef JCK_COMPILER_TESTS
809 JCK_COMPILER_TESTS =
810endif
811ifndef JCK_RUNTIME_TESTS
812 JCK_RUNTIME_TESTS =
813endif
814ifndef JCK_DEVTOOLS_TESTS
815 JCK_DEVTOOLS_TESTS =
816endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700817
Kelly O'Hair119b6472011-03-22 11:08:09 -0700818# Generic rule used to run jck tests
819_generic_jck_tests: prep $(PRODUCT_HOME) $(EXCLUDELIST)
820 @$(EXPAND) $(EXCLUDELIST) \
821 | $(CUT) -d' ' -f1 \
822 | $(SED) -e 's@^@Excluding: @'
823 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
824 $(PRODUCT_HOME)/bin/java $(JTJCK_JAVA_ARGS) \
825 -jar "$(JTJCK_JAR)" \
826 $(JTJCK_OPTIONS) \
827 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
828 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
829 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
830 $(TESTDIRS) \
831 ) ; $(BUNDLE_UP_AND_EXIT)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700832
Kelly O'Hair119b6472011-03-22 11:08:09 -0700833# JCK7 compiler tests
834jck7compiler:
835 $(MAKE) UNIQUE_DIR=$@ \
836 JCK_HOME=$(JCK7COMPILER_HOME) \
837 TESTDIRS="$(JCK_COMPILER_TESTS)" \
838 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700839
Kelly O'Hair119b6472011-03-22 11:08:09 -0700840# JCK7 runtime tests
841jck7runtime:
842 $(MAKE) UNIQUE_DIR=$@ \
843 JCK_HOME=$(JCK7RUNTIME_HOME) \
844 TESTDIRS="$(JCK_RUNTIME_TESTS)" \
845 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700846
Kelly O'Hair119b6472011-03-22 11:08:09 -0700847# JCK7 devtools tests
848jck7devtools:
849 $(MAKE) UNIQUE_DIR=$@ \
850 JCK_HOME=$(JCK7DEVTOOLS_HOME) \
851 TESTDIRS="$(JCK_DEVTOOLS_TESTS)" \
852 _generic_jck_tests
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700853
Kelly O'Hair119b6472011-03-22 11:08:09 -0700854# Run all 3 sets of JCK7 tests
855jck_all: jck7runtime jck7devtools jck7compiler
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700856
Kelly O'Hair119b6472011-03-22 11:08:09 -0700857PHONY_LIST += jck_all _generic_jck_tests \
858 jck7compiler jck7runtime jck7devtools
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700859
860################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000861
862# Phony targets (e.g. these are not filenames)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700863.PHONY: all clean prep $(PHONY_LIST)
864
865################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000866