author | mullan |
Wed, 19 Oct 2011 10:15:23 -0400 | |
changeset 10788 | 680a3dbfcaba |
parent 5652 | 89482b760ef7 |
child 10947 | 47788da3eb3f |
permissions | -rw-r--r-- |
10 | 1 |
# |
5214 | 2 |
# Makefile to run jtreg and other tests |
3 |
# |
|
4 |
||
5 |
# Product builds and langtools builds |
|
6 |
# |
|
7 |
# A full product build (or "control" build) creates a complete JDK image. |
|
8 |
# To test a product build, set TESTJAVA to the path for the image. |
|
10 | 9 |
# |
5214 | 10 |
# A langtools build just builds the langtools components of a JDK. |
11 |
# To test a langtools build, set TESTJAVA to the path for a recent JDK |
|
12 |
# build, and set TESTBOOTCLASSPATH to the compiled langtools classes -- |
|
13 |
# for example build/classes or dist/lib/classes.jar. |
|
14 |
||
15 |
# JPRT |
|
16 |
# JPRT may invoke this Makefile directly, as part of a langtools build, |
|
17 |
# or indirectly, via FOREST/test/Makefile, as part of a control build. |
|
10 | 18 |
|
19 |
# Get OS/ARCH specifics |
|
20 |
OSNAME = $(shell uname -s) |
|
21 |
ifeq ($(OSNAME), SunOS) |
|
22 |
PLATFORM = solaris |
|
23 |
JT_PLATFORM = solaris |
|
24 |
ARCH = $(shell uname -p) |
|
25 |
ifeq ($(ARCH), i386) |
|
26 |
ARCH=i586 |
|
27 |
endif |
|
28 |
endif |
|
29 |
ifeq ($(OSNAME), Linux) |
|
30 |
PLATFORM = linux |
|
31 |
JT_PLATFORM = linux |
|
32 |
ARCH = $(shell uname -m) |
|
33 |
ifeq ($(ARCH), i386) |
|
34 |
ARCH=i586 |
|
35 |
endif |
|
36 |
endif |
|
37 |
ifeq ($(OSNAME), Windows_NT) |
|
38 |
PLATFORM = windows |
|
39 |
JT_PLATFORM = win32 |
|
40 |
ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64) |
|
41 |
ARCH=ia64 |
|
42 |
else |
|
43 |
ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),AMD64) |
|
44 |
ARCH=x64 |
|
45 |
else |
|
46 |
ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),EM64T) |
|
47 |
ARCH=x64 |
|
48 |
else |
|
49 |
ARCH=i586 |
|
50 |
endif |
|
51 |
endif |
|
52 |
endif |
|
5652
89482b760ef7
6954901: langtools/test/Makefile should check for bin/javac(.exe) instead of lib/tools.jar
jjg
parents:
5647
diff
changeset
|
53 |
EXE_SUFFIX=.exe |
10 | 54 |
endif |
55 |
||
56 |
# Root of this test area (important to use full paths in some places) |
|
57 |
TEST_ROOT := $(shell pwd) |
|
58 |
||
5214 | 59 |
# Default bundle of all test results (passed or not) (JPRT only) |
60 |
ifdef JPRT_JOB_ID |
|
61 |
JPRT_CLEAN = clean |
|
62 |
JPRT_ARCHIVE_BUNDLE = $(TEST_ROOT)/JPRT_ARCHIVE_BUNDLE.zip |
|
63 |
endif |
|
10 | 64 |
|
65 |
ifeq ($(PLATFORM), windows) |
|
66 |
SLASH_JAVA = J: |
|
67 |
else |
|
68 |
SLASH_JAVA = /java |
|
69 |
endif |
|
70 |
||
71 |
# Default JTREG to run |
|
3779 | 72 |
ifdef JPRT_JTREG_HOME |
73 |
JTREG_HOME = $(JPRT_JTREG_HOME) |
|
74 |
else |
|
75 |
JTREG_HOME = $(SLASH_JAVA)/re/jtreg/4.0/promoted/latest/binaries/jtreg |
|
76 |
endif |
|
77 |
JTREG = $(JTREG_HOME)/$(JT_PLATFORM)/bin/jtreg |
|
5214 | 78 |
JTDIFF = $(JTREG_HOME)/$(JT_PLATFORM)/bin/jtdiff |
10 | 79 |
|
5214 | 80 |
# Default JCK to run |
81 |
ifdef JPRT_JCK_HOME |
|
82 |
JCK_HOME = $(JPRT_JCK_HOME) |
|
83 |
else |
|
84 |
JCK_HOME = $(SLASH_JAVA)/re/jck/7/promoted/latest/binaries |
|
85 |
endif |
|
86 |
||
87 |
# Default JDK for JTREG and JCK |
|
88 |
# |
|
89 |
# JT_JAVA is the version of java used to run jtreg/JCK. Since it is now |
|
90 |
# standard to execute tests in sameVM mode, it should normally be set the |
|
91 |
# same as TESTJAVA (although not necessarily so.) |
|
92 |
# |
|
10 | 93 |
ifdef JPRT_JAVA_HOME |
94 |
JT_JAVA = $(JPRT_JAVA_HOME) |
|
95 |
else |
|
96 |
JT_JAVA = $(SLASH_JAVA)/re/jdk/1.6.0/archive/fcs/binaries/$(PLATFORM)-$(ARCH) |
|
97 |
endif |
|
98 |
||
99 |
# Default JDK to test |
|
3779 | 100 |
ifdef JPRT_IMPORT_PRODUCT_HOME |
101 |
TESTJAVA = $(JPRT_IMPORT_PRODUCT_HOME) |
|
102 |
else |
|
103 |
TESTJAVA = $(SLASH_JAVA)/re/jdk/1.7.0/promoted/latest/binaries/$(PLATFORM)-$(ARCH) |
|
104 |
endif |
|
105 |
||
5214 | 106 |
# PRODUCT_HOME is a JPRT variable pointing to a directory containing the output from |
107 |
# make/Makefile |
|
108 |
# For langtools, this is a directory containing build and dist |
|
5652
89482b760ef7
6954901: langtools/test/Makefile should check for bin/javac(.exe) instead of lib/tools.jar
jjg
parents:
5647
diff
changeset
|
109 |
# For a control build, this is build/$(PRODUCT)-$(ARCH)/XYZ-image |
89482b760ef7
6954901: langtools/test/Makefile should check for bin/javac(.exe) instead of lib/tools.jar
jjg
parents:
5647
diff
changeset
|
110 |
# (i.e, j2sdk-image or jdk-module-image) |
5214 | 111 |
ifdef PRODUCT_HOME |
112 |
ifeq ($(shell [ -r $(PRODUCT_HOME)/dist/lib/classes.jar ]; echo $$?),0) |
|
113 |
TESTBOOTCLASSPATH = $(PRODUCT_HOME)/dist/lib/classes.jar |
|
114 |
endif |
|
5652
89482b760ef7
6954901: langtools/test/Makefile should check for bin/javac(.exe) instead of lib/tools.jar
jjg
parents:
5647
diff
changeset
|
115 |
ifeq ($(shell [ -r $(PRODUCT_HOME)/bin/javac$(EXE_SUFFIX) ]; echo $$?),0) |
5214 | 116 |
TESTJAVA = $(PRODUCT_HOME) |
117 |
endif |
|
118 |
endif |
|
119 |
||
120 |
ifdef TESTBOOTCLASSPATH |
|
121 |
JTREG_OPTIONS += -Xbootclasspath/p:$(TESTBOOTCLASSPATH) |
|
122 |
### In the following, -refvmoptions is an undocumented option |
|
123 |
### The following does not work JCK 7 b30 2/6/2010. Awaiting b31. |
|
124 |
JCK_OPTIONS += \ |
|
125 |
-vmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH) \ |
|
126 |
-refvmoptions:-Xbootclasspath/p:$(TESTBOOTCLASSPATH) |
|
127 |
endif |
|
128 |
||
129 |
# Concurrency is the number of tests that can execute at once. |
|
130 |
# Supported for JCK, not supported for jtreg. |
|
131 |
# On an otherwise empty machine, suggest setting to (#cpus + 2) |
|
132 |
# If unset, the default is (#cpus) |
|
133 |
### RFE: determine and use #cpus |
|
134 |
ifdef JCK_CONCURRENCY |
|
135 |
JCK_OPTIONS += -concurrency:$(JCK_CONCURRENCY) |
|
136 |
endif |
|
137 |
||
138 |
# JCK is executed using "Multi-JVM Group Mode", which is a hybrid |
|
139 |
# of otherVM and sameVM modes. New JVMs are created and reused for |
|
140 |
# a number of tests, then eventually discarded and a new one started. |
|
141 |
# This amortizes the JVM startup time. The "group size" defines |
|
142 |
# how many tests are run in a JVM before it is replaced. |
|
143 |
# If unset, the default is 100. |
|
144 |
JCK_GROUP_SIZE = 1000 |
|
145 |
ifdef JCK_GROUP_SIZE |
|
146 |
JCK_COMPILER_OPTIONS += \ |
|
147 |
-jtoptions:-Ejck.env.compiler.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE) \ |
|
148 |
-jtoptions:-Ejck.env.compiler.compRefExecute.groupMode.groupSize=$(JCK_GROUP_SIZE) |
|
149 |
### The following is not supported. Awaiting RFE 6924287 |
|
150 |
### 6924287: Jck4Jdk: Allow to configure test group size for group mode via simple command line option |
|
151 |
### JCK_RUNTIME_OPTIONS += \ |
|
152 |
### -jtoptions:-Ejck.env.runtime.testCompile.groupMode.groupSize=$(JCK_GROUP_SIZE) |
|
153 |
endif |
|
154 |
||
5647
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
155 |
# Timeouts -- by default, increase test timeouts when running on JPRT |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
156 |
ifdef JPRT_JOB_ID |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
157 |
ifndef JTREG_TIMEOUT_FACTOR |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
158 |
JTREG_TIMEOUT_FACTOR = 3 |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
159 |
endif |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
160 |
endif |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
161 |
ifdef JTREG_TIMEOUT_FACTOR |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
162 |
JTREG_OPTIONS += -timeoutFactor:$(JTREG_TIMEOUT_FACTOR) |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
163 |
endif |
9a0b03523aa9
6952188: update timeout for langtools jtreg tests on JPRT
jjg
parents:
5214
diff
changeset
|
164 |
|
5214 | 165 |
# Assertions: some tests show failures when assertions are enabled. |
166 |
# Since javac is typically loaded via the bootclassloader (either via TESTJAVA |
|
167 |
# or TESTBOOTCLASSPATH), you may need -esa to enable assertions in javac. |
|
168 |
JTREG_OPTIONS += $(ASSERTION_OPTIONS) |
|
169 |
JCK_OPTIONS += $(ASSERTION_OPTIONS:%=-vmoptions:%) |
|
170 |
||
171 |
# Include shared options |
|
172 |
JCK_COMPILER_OPTIONS += $(JCK_OPTIONS) |
|
173 |
JCK_RUNTIME_OPTIONS += $(JCK_OPTIONS) |
|
174 |
||
175 |
# Exit codes: |
|
176 |
# jtreg, jck: 0: OK, 1: tests failed, 2: tests error; 3+: SERIOUS |
|
177 |
FATAL_JTREG_EXIT = 3 |
|
178 |
FATAL_JCK_EXIT = 3 |
|
179 |
# jtdiff: 0: OK, 1: differences found; 2+: SERIOUS |
|
180 |
FATAL_JTDIFF_EXIT = 2 |
|
181 |
# |
|
182 |
# Exit -- used for final "normal" exit from "make". Redefine to "true" to avoid |
|
183 |
# having make exit with non-zero return code. |
|
184 |
EXIT = exit |
|
185 |
# Function to exit shell if exit code of preceding command is greater than or equal |
|
186 |
# to a given level. Redefine function or preceding FATAL_*_EXIT codes as needed. |
|
187 |
EXIT_IF_FATAL = status=$$?; if [ $$status -ge $(1) ]; then exit $$status ; fi |
|
10 | 188 |
|
189 |
# The test directories to run |
|
190 |
DEFAULT_TESTDIRS = . |
|
191 |
TESTDIRS = $(DEFAULT_TESTDIRS) |
|
192 |
||
193 |
# Root of all test results |
|
5214 | 194 |
TEST_OUTPUT_DIR = $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools |
195 |
ABS_TEST_OUTPUT_DIR := \ |
|
196 |
$(shell mkdir -p $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools; \ |
|
197 |
cd $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools; \ |
|
198 |
pwd ) |
|
199 |
# Subdirectories for different test runs |
|
200 |
JTREG_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jtreg |
|
201 |
JCK_COMPILER_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-compiler |
|
202 |
JCK_RUNTIME_OUTPUT_DIR = $(ABS_TEST_OUTPUT_DIR)/jck-runtime-Xcompile |
|
10 | 203 |
|
5214 | 204 |
# Default make rule -- warning, may take a while |
205 |
all: $(JPRT_CLEAN) jtreg-tests jck-compiler-tests jck-runtime-tests $(JPRT_ARCHIVE_BUNDLE) all-summary |
|
206 |
@echo "Testing completed successfully" |
|
207 |
||
208 |
jtreg apt javac javadoc javah javap: $(JPRT_CLEAN) jtreg-tests $(JPRT_ARCHIVE_BUNDLE) jtreg-summary |
|
209 |
@echo "Testing completed successfully" |
|
210 |
||
211 |
jck-compiler: $(JPRT_CLEAN) jck-compiler-tests $(JPRT_ARCHIVE_BUNDLE) jck-compiler-summary |
|
212 |
@echo "Testing completed successfully" |
|
213 |
||
214 |
jck-runtime: $(JPRT_CLEAN) jck-runtime-tests $(JPRT_ARCHIVE_BUNDLE) jck-runtime-summary |
|
10 | 215 |
@echo "Testing completed successfully" |
216 |
||
217 |
# for use with JPRT -testrule |
|
5214 | 218 |
all: JTREG_TESTDIRS = . |
219 |
jtreg: JTREG_TESTDIRS = . |
|
220 |
apt: JTREG_TESTDIRS = tools/apt |
|
221 |
javac: JTREG_TESTDIRS = tools/javac |
|
222 |
javadoc: JTREG_TESTDIRS = tools/javadoc com/sun/javadoc |
|
223 |
javah: JTREG_TESTDIRS = tools/javah |
|
224 |
javap: JTREG_TESTDIRS = tools/javap |
|
225 |
||
226 |
# Run jtreg tests |
|
227 |
# |
|
228 |
# JTREG_HOME |
|
229 |
# Installed location of jtreg |
|
230 |
# JT_JAVA |
|
231 |
# Version of java used to run jtreg. Should normally be the same as TESTJAVA |
|
232 |
# TESTJAVA |
|
233 |
# Version of java to be tested. |
|
234 |
# JTREG_OPTIONS |
|
235 |
# Additional options for jtreg |
|
236 |
# JTREG_TESTDIRS |
|
237 |
# Directories of tests to be run |
|
238 |
# JTREG_OUTPUT_DIR |
|
239 |
# Where to write the results |
|
240 |
# JTREG_REFERENCE |
|
241 |
# (Optional) reference results (e.g. work, report or summary.txt) |
|
242 |
# |
|
243 |
jtreg-tests: check-jtreg FRC |
|
244 |
@rm -f -r $(JTREG_OUTPUT_DIR)/JTwork $(JTREG_OUTPUT_DIR)/JTreport \ |
|
245 |
$(JTREG_OUTPUT_DIR)/diff.html $(JTREG_OUTPUT_DIR)/status.txt |
|
246 |
@mkdir -p $(JTREG_OUTPUT_DIR) |
|
247 |
JT_JAVA=$(JT_JAVA) $(JTREG) \ |
|
248 |
-J-Xmx512m \ |
|
249 |
-a -samevm -ignore:quiet -v:fail,error,nopass \ |
|
250 |
-r:$(JTREG_OUTPUT_DIR)/JTreport \ |
|
251 |
-w:$(JTREG_OUTPUT_DIR)/JTwork \ |
|
252 |
-jdk:$(TESTJAVA) \ |
|
253 |
$(JAVA_ARGS:%=-vmoption:%) \ |
|
254 |
$(JTREG_OPTIONS) \ |
|
255 |
$(JTREG_TESTDIRS) \ |
|
256 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JTREG_EXIT)) ; \ |
|
257 |
echo $$status > $(JTREG_OUTPUT_DIR)/status.txt \ |
|
258 |
) |
|
259 |
ifdef JTREG_REFERENCE |
|
260 |
JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JTREG_OUTPUT_DIR)/diff.html \ |
|
261 |
$(JTREG_REFERENCE) $(JTREG_OUTPUT_DIR)/JTreport \ |
|
262 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) ) |
|
263 |
endif |
|
264 |
||
265 |
jtreg-summary: FRC |
|
266 |
if [ -r $(JTREG_OUTPUT_DIR)/status.txt ]; then \ |
|
267 |
echo ; echo "Summary of jtreg test failures" ; \ |
|
268 |
cat $(JTREG_OUTPUT_DIR)/JTreport/text/summary.txt | \ |
|
269 |
grep -v 'Not run' | grep -v 'Passed' ; \ |
|
270 |
echo ; \ |
|
271 |
$(EXIT) `cat $(JTREG_OUTPUT_DIR)/status.txt` ; \ |
|
272 |
fi |
|
10 | 273 |
|
274 |
# Check to make sure these directories exist |
|
5214 | 275 |
check-jtreg: $(JT_HOME) $(PRODUCT_HOME) $(JTREG) |
276 |
||
277 |
||
278 |
# Run JCK-compiler tests |
|
279 |
# |
|
280 |
# JCK_HOME |
|
281 |
# Installed location of JCK: should include JCK-compiler, and JCK-extras |
|
282 |
# JT_JAVA |
|
283 |
# Version of java used to run JCK. Should normally be the same as TESTJAVA |
|
284 |
# TESTJAVA |
|
285 |
# Version of java to be tested. |
|
286 |
# JCK_COMPILER_OPTIONS |
|
287 |
# Additional options for JCK-compiler |
|
288 |
# JCK_COMPILER_TESTDIRS |
|
289 |
# Directories of tests to be run |
|
290 |
# JCK_COMPILER_OUTPUT_DIR |
|
291 |
# Where to write the results |
|
292 |
# JCK_COMPILER_REFERENCE |
|
293 |
# (Optional) reference results (e.g. work, report or summary.txt) |
|
294 |
# |
|
295 |
jck-compiler-tests: check-jck FRC |
|
296 |
@rm -f -r $(JCK_COMPILER_OUTPUT_DIR)/work $(JCK_COMPILER_OUTPUT_DIR)/report \ |
|
297 |
$(JCK_COMPILER_OUTPUT_DIR)/diff.html $(JCK_COMPILER_OUTPUT_DIR)/status.txt |
|
298 |
@mkdir -p $(JCK_COMPILER_OUTPUT_DIR) |
|
299 |
$(JT_JAVA)/bin/java -XX:MaxPermSize=256m -Xmx512m \ |
|
300 |
-jar $(JCK_HOME)/JCK-compiler-7/lib/jtjck.jar \ |
|
301 |
-v:non-pass \ |
|
302 |
-r:$(JCK_COMPILER_OUTPUT_DIR)/report \ |
|
303 |
-w:$(JCK_COMPILER_OUTPUT_DIR)/work \ |
|
304 |
-jdk:$(TESTJAVA) \ |
|
305 |
$(JCK_COMPILER_OPTIONS) \ |
|
306 |
$(JCK_COMPILER_TESTDIRS) \ |
|
307 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \ |
|
308 |
echo $$status > $(JCK_COMPILER_OUTPUT_DIR)/status.txt \ |
|
309 |
) |
|
310 |
ifdef JCK_COMPILER_REFERENCE |
|
311 |
JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_COMPILER_OUTPUT_DIR)/diff.html \ |
|
312 |
$(JCK_COMPILER_REFERENCE) $(JCK_COMPILER_OUTPUT_DIR)/report \ |
|
313 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) ) |
|
314 |
endif |
|
315 |
||
316 |
jck-compiler-summary: FRC |
|
317 |
if [ -r $(JCK_COMPILER_OUTPUT_DIR)/status.txt ]; then \ |
|
318 |
echo ; echo "Summary of JCK-compiler test failures" ; \ |
|
319 |
cat $(JCK_COMPILER_OUTPUT_DIR)/report/text/summary.txt | \ |
|
320 |
grep -v 'Not run' | grep -v 'Passed' ; \ |
|
321 |
echo ; \ |
|
322 |
$(EXIT) `cat $(JCK_COMPILER_OUTPUT_DIR)/status.txt` ; \ |
|
323 |
fi |
|
10 | 324 |
|
5214 | 325 |
# Run JCK-runtime tests in -Xcompile mode |
326 |
# This is a special mode to test javac by compiling the tests in the JCK-runtime test suite |
|
327 |
# Normal JCK-runtime invocation belongs in the jdk/ repository. |
|
328 |
# |
|
329 |
# JCK_HOME |
|
330 |
# Installed location of JCK: should include JCK-compiler, JCK-runtime and JCK-extras |
|
331 |
# JT_JAVA |
|
332 |
# Version of java used to run JCK. Should normally be the same as TESTJAVA |
|
333 |
# TESTJAVA |
|
334 |
# Version of java to be tested. |
|
335 |
# JCK_RUNTIME_OPTIONS |
|
336 |
# Additional options for JCK-runtime |
|
337 |
# JCK_RUNTIME_TESTDIRS |
|
338 |
# Directories of tests to be run |
|
339 |
# JCK_RUNTIME_OUTPUT_DIR |
|
340 |
# Where to write the results |
|
341 |
# JCK_RUNTIME_REFERENCE |
|
342 |
# (Optional) reference results (e.g. work, report or summary.txt) |
|
343 |
# |
|
344 |
jck-runtime-tests: check-jck FRC |
|
345 |
@rm -f -r $(JCK_RUNTIME_OUTPUT_DIR)/work $(JCK_RUNTIME_OUTPUT_DIR)/report \ |
|
346 |
$(JCK_RUNTIME_OUTPUT_DIR)/diff.html $(JCK_RUNTIME_OUTPUT_DIR)/status.txt |
|
347 |
@mkdir -p $(JCK_RUNTIME_OUTPUT_DIR) |
|
348 |
$(JT_JAVA)/bin/java -XX:MaxPermSize=256m -Xmx512m \ |
|
349 |
-jar $(JCK_HOME)/JCK-runtime-7/lib/jtjck.jar \ |
|
350 |
-v:non-pass \ |
|
351 |
-r:$(JCK_RUNTIME_OUTPUT_DIR)/report \ |
|
352 |
-w:$(JCK_RUNTIME_OUTPUT_DIR)/work \ |
|
353 |
-jdk:$(TESTJAVA) \ |
|
354 |
-Xcompile \ |
|
355 |
$(JCK_RUNTIME_OPTIONS) \ |
|
356 |
$(JCK_RUNTIME_TESTDIRS) \ |
|
357 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JCK_EXIT)) ; \ |
|
358 |
echo $$status > $(JCK_RUNTIME_OUTPUT_DIR)/status.txt \ |
|
359 |
) |
|
360 |
ifdef JCK_RUNTIME_REFERENCE |
|
361 |
JT_JAVA=$(JT_JAVA) $(JTDIFF) -o $(JCK_RUNTIME_OUTPUT_DIR)/diff.html \ |
|
362 |
$(JCK_RUNTIME_REFERENCE) $(JCK_RUNTIME_OUTPUT_DIR)/report \ |
|
363 |
|| ( $(call EXIT_IF_FATAL,$(FATAL_JTDIFF_EXIT)) ) |
|
364 |
endif |
|
365 |
||
366 |
jck-runtime-summary: FRC |
|
367 |
if [ -r $(JCK_RUNTIME_OUTPUT_DIR)/status.txt ]; then \ |
|
368 |
echo ; echo "Summary of JCK-runtime test failures" ; \ |
|
369 |
cat $(JCK_RUNTIME_OUTPUT_DIR)/report/text/summary.txt | \ |
|
370 |
grep -v 'Not run' | grep -v 'Passed' ; \ |
|
371 |
echo ; \ |
|
372 |
$(EXIT) `cat $(JCK_RUNTIME_OUTPUT_DIR)/status.txt` ; \ |
|
373 |
fi |
|
374 |
||
375 |
# Check to make sure these directories exist |
|
376 |
check-jck: $(JT_HOME) $(JCK_HOME) $(PRODUCT_HOME) |
|
377 |
||
378 |
all-summary: FRC |
|
379 |
if [ -n "`find $(TEST_OUTPUT_DIR) -name status.txt`" ]; then |
|
380 |
echo ; echo "Summary of test failures" ; \ |
|
381 |
cat `find $(TEST_OUTPUT_DIR) -name summary.txt` | \ |
|
382 |
grep -v 'Not run' | grep -v 'Passed' ; \ |
|
383 |
echo ; \ |
|
384 |
$(EXIT) 1 |
|
385 |
fi |
|
10 | 386 |
|
387 |
# Bundle up the results |
|
388 |
$(JPRT_ARCHIVE_BUNDLE): FRC |
|
389 |
@rm -f $@ |
|
390 |
@mkdir -p $(@D) |
|
391 |
( cd $(TEST_OUTPUT_DIR) && zip -q -r $@ . ) |
|
392 |
||
393 |
# Cleanup |
|
394 |
clean: |
|
395 |
rm -f $(JPRT_ARCHIVE_BUNDLE) |
|
396 |
||
397 |
# Used to force a target rules to run |
|
398 |
FRC: |
|
399 |
||
400 |
# Phony targets (e.g. these are not filenames) |
|
5214 | 401 |
.PHONY: all clean \ |
402 |
jtreg javac javadoc javah javap jtreg-tests jtreg-summary check-jtreg \ |
|
403 |
jck-compiler jck-compiler-tests jck-compiler-summary \ |
|
404 |
jck-runtime jck-runtime-tests jck-runtime-summary check-jck |
|
10 | 405 |
|
5214 | 406 |
# No use of suffix rules |
407 |
.SUFFIXES: |
|
408 |