blob: c5a982972b1a4a065a6422b42fa4edf318fa30d3 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
Kelly O'Haird1258922009-11-08 15:11:10 -08002# Copyright 1995-2009 Sun Microsystems, Inc. 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
7# published by the Free Software Foundation. Sun designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Sun in the LICENSE file that accompanied this code.
10#
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#
21# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22# CA 95054 USA or visit www.sun.com if you need additional information or
23# have any questions.
24#
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
40CHMOD = chmod
41CP = cp
42CUT = cut
43ECHO = echo
44EGREP = egrep
45EXPAND = expand
46EXPR = expr
47KILL = /usr/bin/kill
48MKDIR = mkdir
49NOHUP = nohup
50PWD = pwd
51SED = sed
52SLEEP = sleep
53SORT = sort
54TEE = tee
55UNAME = uname
56UNIQ = uniq
57WC = wc
58XHOST = xhost
59ZIP = zip
60
61# Get OS name from uname
62UNAME_S := $(shell $(UNAME) -s)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070063
64# Commands to run on paths to make mixed paths for java on windows
Kelly O'Haird1258922009-11-08 15:11:10 -080065GETMIXEDPATH=$(ECHO)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -070066
67# Location of developer shared files
68SLASH_JAVA = /java
69
70# Platform specific settings
Kelly O'Haird1258922009-11-08 15:11:10 -080071ifeq ($(UNAME_S), SunOS)
72 OS_NAME = solaris
73 OS_ARCH := $(shell $(UNAME) -p)
74 OS_VERSION := $(shell $(UNAME) -r)
J. Duke319a3b92007-12-01 00:00:00 +000075endif
Kelly O'Haird1258922009-11-08 15:11:10 -080076ifeq ($(UNAME_S), Linux)
77 OS_NAME = linux
78 OS_ARCH := $(shell $(UNAME) -m)
79 OS_VERSION := $(shell $(UNAME) -r)
J. Duke319a3b92007-12-01 00:00:00 +000080endif
Kelly O'Haird1258922009-11-08 15:11:10 -080081ifndef OS_NAME
82 ifneq ($(PROCESSOR_IDENTIFIER), )
83 OS_NAME = windows
84 SLASH_JAVA = J:
85 # A variety of ways to say X64 arch :^(
86 OS_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER))
87 EXESUFFIX = .exe
88 # These need to be different depending on MKS or CYGWIN
89 ifeq ($(findstring cygdrive,$(shell ($(CD) C:/ && $(PWD)))), )
90 GETMIXEDPATH = dosname -s
91 OS_VERSION := $(shell $(UNAME) -r)
J. Duke319a3b92007-12-01 00:00:00 +000092 else
Kelly O'Haird1258922009-11-08 15:11:10 -080093 GETMIXEDPATH = cygpath -m -s
94 OS_VERSION := $(shell $(UNAME) -s | $(CUT) -d'-' -f2)
J. Duke319a3b92007-12-01 00:00:00 +000095 endif
96 endif
Kelly O'Haird1258922009-11-08 15:11:10 -080097endif
98
99# Only want major and minor numbers from os version
100OS_VERSION := $(shell $(ECHO) "$(OS_VERSION)" | $(CUT) -d'.' -f1,2)
101
102# Try and use names i586, x64, and ia64 consistently
103OS_ARCH:=$(subst X64,x64,$(OS_ARCH))
104OS_ARCH:=$(subst AMD64,x64,$(OS_ARCH))
105OS_ARCH:=$(subst amd64,x64,$(OS_ARCH))
106OS_ARCH:=$(subst x86_64,x64,$(OS_ARCH))
107OS_ARCH:=$(subst EM64T,x64,$(OS_ARCH))
108OS_ARCH:=$(subst em64t,x64,$(OS_ARCH))
109OS_ARCH:=$(subst intel64,x64,$(OS_ARCH))
110OS_ARCH:=$(subst Intel64,x64,$(OS_ARCH))
111OS_ARCH:=$(subst INTEL64,x64,$(OS_ARCH))
112OS_ARCH:=$(subst IA64,ia64,$(OS_ARCH))
113OS_ARCH:=$(subst X86,i586,$(OS_ARCH))
114OS_ARCH:=$(subst x86,i586,$(OS_ARCH))
115OS_ARCH:=$(subst i386,i586,$(OS_ARCH))
116OS_ARCH:=$(subst i486,i586,$(OS_ARCH))
117OS_ARCH:=$(subst i686,i586,$(OS_ARCH))
118
119# Check for ARCH_DATA_MODEL, adjust OS_ARCH accordingly
120ifndef ARCH_DATA_MODEL
121 ARCH_DATA_MODEL=32
122endif
123ARCH_DATA_MODEL_ERROR= \
124 ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) cannot be used with $(OS_NAME)-$(ARCH)
125ifeq ($(ARCH_DATA_MODEL),64)
126 ifeq ($(OS_NAME)-$(OS_ARCH),solaris-i586)
127 OS_ARCH=x64
128 endif
129 ifeq ($(OS_NAME)-$(OS_ARCH),solaris-sparc)
130 OS_ARCH=sparcv9
131 endif
132 ifeq ($(OS_ARCH),i586)
133 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
134 endif
135 ifeq ($(OS_ARCH),sparc)
136 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
137 endif
138else
139 ifeq ($(ARCH_DATA_MODEL),32)
140 ifeq ($(OS_ARCH),x64)
141 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
142 endif
143 ifeq ($(OS_ARCH),ia64)
144 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
145 endif
146 ifeq ($(OS_ARCH),sparcv9)
147 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
148 endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700149 else
Kelly O'Haird1258922009-11-08 15:11:10 -0800150 x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700151 endif
J. Duke319a3b92007-12-01 00:00:00 +0000152endif
153
154# Root of this test area (important to use full paths in some places)
Kelly O'Haird1258922009-11-08 15:11:10 -0800155TEST_ROOT := $(shell $(PWD))
J. Duke319a3b92007-12-01 00:00:00 +0000156
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700157# Root of all test results
158ifdef ALT_OUTPUTDIR
159 ABS_OUTPUTDIR = $(ALT_OUTPUTDIR)
J. Duke319a3b92007-12-01 00:00:00 +0000160else
Kelly O'Haird1258922009-11-08 15:11:10 -0800161 ABS_OUTPUTDIR = $(TEST_ROOT)/../build/$(OS_NAME)-$(OS_ARCH)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700162endif
163ABS_BUILD_ROOT = $(ABS_OUTPUTDIR)
Kelly O'Haird1258922009-11-08 15:11:10 -0800164ABS_TEST_OUTPUT_DIR := $(ABS_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700165
166# Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
167ifndef PRODUCT_HOME
168 # Try to use j2sdk-image if it exists
169 ABS_JDK_IMAGE = $(ABS_BUILD_ROOT)/j2sdk-image
170 PRODUCT_HOME := \
171 $(shell \
172 if [ -d $(ABS_JDK_IMAGE) ] ; then \
173 $(ECHO) "$(ABS_JDK_IMAGE)"; \
174 else \
Kelly O'Haird1258922009-11-08 15:11:10 -0800175 $(ECHO) "$(ABS_BUILD_ROOT)"; \
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700176 fi)
177 PRODUCT_HOME := $(PRODUCT_HOME)
J. Duke319a3b92007-12-01 00:00:00 +0000178endif
179
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700180# Expect JPRT to set JPRT_PRODUCT_ARGS (e.g. -server etc.)
181# Should be passed into 'java' only.
Kelly O'Haird1258922009-11-08 15:11:10 -0800182# Could include: -d64 -server -client OR any java option
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700183ifdef JPRT_PRODUCT_ARGS
184 JAVA_ARGS = $(JPRT_PRODUCT_ARGS)
185endif
J. Duke319a3b92007-12-01 00:00:00 +0000186
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700187# Expect JPRT to set JPRT_PRODUCT_VM_ARGS (e.g. -Xcomp etc.)
188# Should be passed into anything running the vm (java, javac, javadoc, ...).
189ifdef JPRT_PRODUCT_VM_ARGS
190 JAVA_VM_ARGS = $(JPRT_PRODUCT_VM_ARGS)
191endif
J. Duke319a3b92007-12-01 00:00:00 +0000192
Kelly O'Haird1258922009-11-08 15:11:10 -0800193# Check JAVA_ARGS arguments based on ARCH_DATA_MODEL etc.
194ifeq ($(OS_NAME),solaris)
195 D64_ERROR_MESSAGE=Mismatch between ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) and use of -d64 in JAVA_ARGS=$(JAVA_ARGS)
196 ifeq ($(ARCH_DATA_MODEL),32)
197 ifneq ($(findstring -d64,$(JAVA_ARGS)),)
198 x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
199 endif
200 endif
201 ifeq ($(ARCH_DATA_MODEL),64)
202 ifeq ($(findstring -d64,$(JAVA_ARGS)),)
203 x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
204 endif
205 endif
206endif
207
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700208# Expect JPRT to set JPRT_ARCHIVE_BUNDLE (path to zip bundle for results)
209ARCHIVE_BUNDLE = $(ABS_TEST_OUTPUT_DIR)/ARCHIVE_BUNDLE.zip
210ifdef JPRT_ARCHIVE_BUNDLE
211 ARCHIVE_BUNDLE = $(JPRT_ARCHIVE_BUNDLE)
212endif
J. Duke319a3b92007-12-01 00:00:00 +0000213
Kelly O'Haird1258922009-11-08 15:11:10 -0800214# DISPLAY settings for virtual frame buffer
215START_XVFB = start-Xvfb.sh
216NOHUP_OUTPUT = $(ABS_TEST_OUTPUT_DIR)/start-Xvfb.nohup-output.txt
217DISPLAY_PID_FILE=$(ABS_TEST_OUTPUT_DIR)/xvfb-display-number.txt
218DISPLAY_SLEEP_TIME=10
219DISPLAY_MAX_SLEEPS=10
220ifeq ($(OS_NAME),solaris)
221 VIRTUAL_FRAME_BUFFER = true
222endif
223ifeq ($(OS_NAME),linux)
224 VIRTUAL_FRAME_BUFFER = true
225endif
226
227# Does not work yet, display dies as soon as it gets used. :^(
228VIRTUAL_FRAME_BUFFER = false
229
230# Are we using a VIRTUAL_FRAME_BUFFER (Xvfb)
231ifeq ($(VIRTUAL_FRAME_BUFFER),true)
232
233 PREP_DISPLAY = \
234 $(CP) $(START_XVFB) $(ABS_TEST_OUTPUT_DIR); \
235 $(CHMOD) a+x $(ABS_TEST_OUTPUT_DIR)/$(START_XVFB); \
236 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
237 $(NOHUP) $(ABS_TEST_OUTPUT_DIR)/$(START_XVFB) $(DISPLAY_PID_FILE) > $(NOHUP_OUTPUT) 2>&1 && \
238 $(SLEEP) $(DISPLAY_SLEEP_TIME) ) & \
239 count=1; \
240 while [ ! -s $(DISPLAY_PID_FILE) ] ; do \
241 $(ECHO) "Sleeping $(DISPLAY_SLEEP_TIME) more seconds, DISPLAY not ready"; \
242 $(SLEEP) $(DISPLAY_SLEEP_TIME); \
243 count=`$(EXPR) $${count} '+' 1`; \
244 if [ $${count} -gt $(DISPLAY_MAX_SLEEPS) ] ; then \
245 $(ECHO) "ERROR: DISPLAY not ready, giving up on DISPLAY"; \
246 exit 9; \
247 fi; \
248 done ; \
249 DISPLAY=":`$(CAT) $(DISPLAY_PID_FILE)`"; \
250 export DISPLAY; \
251 $(CAT) $(NOHUP_OUTPUT); \
252 $(ECHO) "Prepared DISPLAY=$${DISPLAY}"; \
253 $(XHOST) || \
254 ( $(ECHO) "ERROR: No display" ; exit 8)
255
256 KILL_DISPLAY = \
257 ( \
258 DISPLAY=":`$(CAT) $(DISPLAY_PID_FILE)`"; \
259 export DISPLAY; \
260 if [ -s "$(DISPLAY_PID_FILE)" ] ; then \
261 $(KILL) `$(CAT) $(DISPLAY_PID_FILE)` > /dev/null 2>&1; \
262 $(KILL) -9 `$(CAT) $(DISPLAY_PID_FILE)` > /dev/null 2>&1; \
263 fi; \
264 $(ECHO) "Killed DISPLAY=$${DISPLAY}"; \
265 )
266
267else
268
269 PREP_DISPLAY = $(ECHO) "VIRTUAL_FRAME_BUFFER=$(VIRTUAL_FRAME_BUFFER)"
270 KILL_DISPLAY = $(ECHO) "VIRTUAL_FRAME_BUFFER=$(VIRTUAL_FRAME_BUFFER)"
271
272endif
273
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700274# How to create the test bundle (pass or fail, we want to create this)
275# Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
276ZIP_UP_RESULTS = ( $(MKDIR) -p `dirname $(ARCHIVE_BUNDLE)` \
277 && $(CD) $(ABS_TEST_OUTPUT_DIR) \
278 && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
Kelly O'Haird1258922009-11-08 15:11:10 -0800279SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport/text/summary.txt
280STATS_TXT_NAME = Stats.txt
281STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/$(STATS_TXT_NAME)
282RUNLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/runlist.txt
283PASSLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/passlist.txt
284FAILLIST = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/faillist.txt
285BUNDLE_UP_AND_EXIT = \
286( \
287 exitCode=$$? && \
288 _summary="$(SUMMARY_TXT)"; \
289 $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST); \
290 if [ -r "$${_summary}" ] ; then \
291 $(ECHO) "Summary: $${_summary}" > $(STATS_TXT); \
292 $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
293 $(EGREP) ' Passed\.' $(RUNLIST) \
294 | $(EGREP) -v ' Error\.' \
295 | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
296 ( $(EGREP) ' Failed\.' $(RUNLIST); \
297 $(EGREP) ' Error\.' $(RUNLIST); \
298 $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
299 | $(SORT) | $(UNIQ) > $(FAILLIST); \
300 if [ $${exitCode} != 0 -o -s $(FAILLIST) ] ; then \
301 $(EXPAND) $(FAILLIST) \
302 | $(CUT) -d' ' -f1 \
303 | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
304 fi; \
305 runc="`$(CAT) $(RUNLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
306 passc="`$(CAT) $(PASSLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
307 failc="`$(CAT) $(FAILLIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
308 exclc="`$(CAT) $(EXCLUDELIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
309 $(ECHO) "TEST STATS: run=$${runc} pass=$${passc} fail=$${failc} excluded=$${exclc}" \
310 >> $(STATS_TXT); \
311 else \
312 $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
313 fi; \
314 $(CAT) $(STATS_TXT); \
315 $(ZIP_UP_RESULTS) && $(KILL_DISPLAY) && \
316 exit $${exitCode} \
317)
J. Duke319a3b92007-12-01 00:00:00 +0000318
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700319################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000320
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700321# Default make rule (runs jtreg_tests)
322all: jtreg_tests
323 @$(ECHO) "Testing completed successfully"
J. Duke319a3b92007-12-01 00:00:00 +0000324
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700325# Prep for output
326prep: clean
327 @$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
328 @$(MKDIR) -p `dirname $(ARCHIVE_BUNDLE)`
J. Duke319a3b92007-12-01 00:00:00 +0000329
330# Cleanup
331clean:
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700332 $(RM) -r $(ABS_TEST_OUTPUT_DIR)
333 $(RM) $(ARCHIVE_BUNDLE)
J. Duke319a3b92007-12-01 00:00:00 +0000334
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700335################################################################
336
337# jtreg tests
338
339# Expect JT_HOME to be set for jtreg tests. (home for jtreg)
Kelly O'Haird020b042009-11-23 09:51:52 -0800340ifndef JT_HOME
341 JT_HOME = $(SLASH_JAVA)/re/jtreg/4.0/promoted/latest/binaries/jtreg
342 ifdef JPRT_JTREG_HOME
343 JT_HOME = $(JPRT_JTREG_HOME)
344 endif
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700345endif
346
347# Expect JPRT to set TESTDIRS to the jtreg test dirs
348ifndef TESTDIRS
Kelly O'Haird1258922009-11-08 15:11:10 -0800349 TESTDIRS = demo
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700350endif
351
Kelly O'Haird1258922009-11-08 15:11:10 -0800352# Samevm settings (default is false)
353ifndef USE_JTREG_SAMEVM
354 USE_JTREG_SAMEVM=false
355endif
356# With samevm, you cannot use -javaoptions?
357ifeq ($(USE_JTREG_SAMEVM),true)
358 EXTRA_JTREG_OPTIONS += -samevm $(JAVA_ARGS) $(JAVA_ARGS:%=-vmoption:%)
359 JTREG_TEST_OPTIONS = $(JAVA_VM_ARGS:%=-vmoption:%)
360else
361 JTREG_TEST_OPTIONS = $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
362endif
363
364# Some tests annoy me and fail frequently
365PROBLEM_LIST=ProblemList.txt
Kelly O'Haird020b042009-11-23 09:51:52 -0800366PROBLEM_LISTS=$(PROBLEM_LIST) $(wildcard closed/$(PROBLEM_LIST))
Kelly O'Haird1258922009-11-08 15:11:10 -0800367EXCLUDELIST=$(ABS_TEST_OUTPUT_DIR)/excludelist.txt
368
369# Create exclude list for this platform and arch
370ifdef NO_EXCLUDES
Kelly O'Haird020b042009-11-23 09:51:52 -0800371$(EXCLUDELIST): $(PROBLEM_LISTS) $(TESTDIRS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800372 @$(ECHO) "NOTHING_EXCLUDED" > $@
373else
Kelly O'Haird020b042009-11-23 09:51:52 -0800374$(EXCLUDELIST): $(PROBLEM_LISTS) $(TESTDIRS)
Kelly O'Haird1258922009-11-08 15:11:10 -0800375 @$(RM) $@ $@.temp1 $@.temp2
Kelly O'Haird020b042009-11-23 09:51:52 -0800376 @(($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-all' ) ;\
377 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH)' ) ;\
378 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_VERSION)') ;\
379 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH)' ) ;\
380 ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-all' ) ;\
381 ($(ECHO) "#") ;\
Kelly O'Haird1258922009-11-08 15:11:10 -0800382 ) | $(SED) -e 's@^[\ ]*@@' \
383 | $(EGREP) -v '^#' > $@.temp1
384 @for tdir in $(TESTDIRS) ; do \
385 ( ( $(CAT) $@.temp1 | $(EGREP) "^$${tdir}" ) ; $(ECHO) "#" ) >> $@.temp2 ; \
386 done
387 @$(ECHO) "# at least one line" >> $@.temp2
388 @( $(EGREP) -v '^#' $@.temp2 ; true ) > $@
389 @$(ECHO) "Excluding list contains `$(EXPAND) $@ | $(WC) -l` items"
390endif
391
Kelly O'Haird020b042009-11-23 09:51:52 -0800392# Select list of directories that exist
393define TestDirs
394$(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
395endef
Kelly O'Haird1258922009-11-08 15:11:10 -0800396# Running batches of tests with or without samevm
397define RunSamevmBatch
Kelly O'Haird020b042009-11-23 09:51:52 -0800398$(ECHO) "Running tests in samevm mode: $(call TestDirs, $?)"
399$(MAKE) TESTDIRS="$(call TestDirs, $?)" USE_JTREG_SAMEVM=true UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800400endef
401define RunOthervmBatch
Kelly O'Haird020b042009-11-23 09:51:52 -0800402$(ECHO) "Running tests in othervm mode: $(call TestDirs, $?)"
403$(MAKE) TESTDIRS="$(call TestDirs, $?)" USE_JTREG_SAMEVM=false UNIQUE_DIR=$@ jtreg_tests
Kelly O'Haird1258922009-11-08 15:11:10 -0800404endef
405define SummaryInfo
406$(ECHO) "Summary for: $?"
407$(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
408endef
409
410# ------------------------------------------------------------------
411
412# Batches of tests (somewhat arbitrary assigments to jdk_* targets)
413JDK_ALL_TARGETS =
414
415# Stable othervm testruns (minus items from PROBLEM_LIST)
416# Using samevm has problems, and doesn't help performance as much as others.
417JDK_ALL_TARGETS += jdk_awt
418jdk_awt: com/sun/awt java/awt sun/awt
419 $(call RunOthervmBatch)
420
421# Stable samevm testruns (minus items from PROBLEM_LIST)
422JDK_ALL_TARGETS += jdk_beans1
423jdk_beans1: java/beans/beancontext java/beans/PropertyChangeSupport \
424 java/beans/Introspector java/beans/Performance \
425 java/beans/VetoableChangeSupport java/beans/Statement
426 $(call RunSamevmBatch)
427
428# Stable othervm testruns (minus items from PROBLEM_LIST)
429# Using samevm has serious problems with these tests
430JDK_ALL_TARGETS += jdk_beans2
431jdk_beans2: java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
432 java/beans/PropertyEditor
433 $(call RunOthervmBatch)
434JDK_ALL_TARGETS += jdk_beans3
435jdk_beans3: java/beans/XMLEncoder
436 $(call RunOthervmBatch)
437
Kelly O'Haird020b042009-11-23 09:51:52 -0800438jdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
439 @$(SummaryInfo)
440
Kelly O'Haird1258922009-11-08 15:11:10 -0800441# Stable samevm testruns (minus items from PROBLEM_LIST)
442JDK_ALL_TARGETS += jdk_io
443jdk_io: java/io
444 $(call RunSamevmBatch)
445
446# Stable samevm testruns (minus items from PROBLEM_LIST)
447JDK_ALL_TARGETS += jdk_lang
448jdk_lang: java/lang
449 $(call RunSamevmBatch)
450
451# Stable othervm testruns (minus items from PROBLEM_LIST)
452# Using samevm has serious problems with these tests
453JDK_ALL_TARGETS += jdk_management1
454jdk_management1: javax/management
455 $(call RunOthervmBatch)
456
457# Stable othervm testruns (minus items from PROBLEM_LIST)
458# Using samevm has serious problems with these tests
459JDK_ALL_TARGETS += jdk_management2
460jdk_management2: com/sun/jmx com/sun/management sun/management
461 $(call RunOthervmBatch)
462
Kelly O'Haird020b042009-11-23 09:51:52 -0800463jdk_management: jdk_management1 jdk_management2
464 @$(SummaryInfo)
465
Kelly O'Haird1258922009-11-08 15:11:10 -0800466# Stable samevm testruns (minus items from PROBLEM_LIST)
467JDK_ALL_TARGETS += jdk_math
468jdk_math: java/math
469 $(call RunSamevmBatch)
470
471# Stable samevm testruns (minus items from PROBLEM_LIST)
472JDK_ALL_TARGETS += jdk_misc
473jdk_misc: demo javax/imageio javax/naming javax/print javax/script \
474 javax/smartcardio javax/sound com/sun/java com/sun/jndi \
475 com/sun/org sun/misc sun/pisces
476 $(call RunSamevmBatch)
477
478# Stable samevm testruns (minus items from PROBLEM_LIST)
479JDK_ALL_TARGETS += jdk_net
480jdk_net: com/sun/net java/net sun/net
481 $(call RunSamevmBatch)
482
483# Stable samevm testruns (minus items from PROBLEM_LIST)
484JDK_ALL_TARGETS += jdk_nio1
485jdk_nio1: java/nio/file
486 $(call RunSamevmBatch)
487
488# Stable othervm testruns (minus items from PROBLEM_LIST)
489# Using samevm has serious problems with these tests
490JDK_ALL_TARGETS += jdk_nio2
491jdk_nio2: java/nio/Buffer java/nio/ByteOrder \
492 java/nio/channels java/nio/BufferPoolMXBean java/nio/MappedByteBuffer
493 $(call RunOthervmBatch)
494JDK_ALL_TARGETS += jdk_nio3
495jdk_nio3: com/sun/nio sun/nio
496 $(call RunOthervmBatch)
497
Kelly O'Haird020b042009-11-23 09:51:52 -0800498jdk_nio: jdk_nio1 jdk_nio2 jdk_nio3
499 @$(SummaryInfo)
500
Kelly O'Haird1258922009-11-08 15:11:10 -0800501# Stable othervm testruns (minus items from PROBLEM_LIST)
502# Using samevm has serious problems with these tests
503JDK_ALL_TARGETS += jdk_rmi
504jdk_rmi: java/rmi javax/rmi sun/rmi
505 $(call RunOthervmBatch)
506
507# Stable samevm testruns (minus items from PROBLEM_LIST)
508JDK_ALL_TARGETS += jdk_security1
509jdk_security1: java/security
510 $(call RunSamevmBatch)
511
512# Stable othervm testruns (minus items from PROBLEM_LIST)
513# Using samevm has serious problems with these tests
514JDK_ALL_TARGETS += jdk_security2
515jdk_security2: javax/crypto com/sun/crypto
516 $(call RunOthervmBatch)
517JDK_ALL_TARGETS += jdk_security3
518jdk_security3: com/sun/security lib/security javax/security sun/security
519 $(call RunOthervmBatch)
520
Kelly O'Haird020b042009-11-23 09:51:52 -0800521jdk_security: jdk_security1 jdk_security2 jdk_security3
522 @$(SummaryInfo)
523
Kelly O'Haird1258922009-11-08 15:11:10 -0800524# Stable othervm testruns (minus items from PROBLEM_LIST)
525# Using samevm has problems, and doesn't help performance as much as others.
526JDK_ALL_TARGETS += jdk_swing
527jdk_swing: javax/swing sun/java2d
528 $(call RunOthervmBatch)
529
530# Stable samevm testruns (minus items from PROBLEM_LIST)
531JDK_ALL_TARGETS += jdk_text
532jdk_text: java/text sun/text
533 $(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_tools1
538jdk_tools1: com/sun/jdi
539 $(call RunOthervmBatch)
540JDK_ALL_TARGETS += jdk_tools2
541jdk_tools2: com/sun/tools sun/jvmstat sun/tools tools vm com/sun/servicetag com/sun/tracing
542 $(call RunOthervmBatch)
543
Kelly O'Haird020b042009-11-23 09:51:52 -0800544jdk_tools: jdk_tools1 jdk_tools2
545 @$(SummaryInfo)
546
Kelly O'Haird1258922009-11-08 15:11:10 -0800547# Stable samevm testruns (minus items from PROBLEM_LIST)
548JDK_ALL_TARGETS += jdk_util
549jdk_util: java/util sun/util
550 $(call RunSamevmBatch)
551
552# ------------------------------------------------------------------
553
554# Run all tests
555jdk_all: $(filter-out jdk_awt jdk_rmi jdk_swing, $(JDK_ALL_TARGETS))
556 @$(SummaryInfo)
557
558# These are all phony targets
559PHONY_LIST += $(JDK_ALL_TARGETS)
560
561# ------------------------------------------------------------------
562
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700563# Default JTREG to run (win32 script works for everybody)
564JTREG = $(JT_HOME)/win32/bin/jtreg
Kelly O'Haird1258922009-11-08 15:11:10 -0800565# Add any extra options (samevm etc.)
566JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
567# Only run automatic tests
568JTREG_BASIC_OPTIONS += -a
569# Report details on all failed or error tests, times too
570JTREG_BASIC_OPTIONS += -v:fail,error,time
571# Retain all files for failing tests
572JTREG_BASIC_OPTIONS += -retain:fail,error
573# Ignore tests are not run and completely silent about it
574JTREG_BASIC_OPTIONS += -ignore:quiet
575# Multiple by 2 the timeout numbers
576JTREG_BASIC_OPTIONS += -timeoutFactor:2
577# Boost the max memory for jtreg to avoid gc thrashing
578JTREG_BASIC_OPTIONS += -J-Xmx512m
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700579
Kelly O'Haird1258922009-11-08 15:11:10 -0800580# Make sure jtreg exists
581$(JTREG): $(JT_HOME)
582
583# Run jtreg
584jtreg_tests: prep $(PRODUCT_HOME) $(JTREG) $(EXCLUDELIST)
585 @$(EXPAND) $(EXCLUDELIST) \
586 | $(CUT) -d' ' -f1 \
587 | $(SED) -e 's@^@Excluding: @'
588 ( \
589 ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)"); \
590 export JT_HOME; \
591 $(PREP_DISPLAY) && \
592 $(shell $(GETMIXEDPATH) "$(JTREG)") \
593 $(JTREG_BASIC_OPTIONS) \
594 -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport \
595 -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTwork \
596 -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
597 -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \
598 $(JTREG_TEST_OPTIONS) \
599 $(TESTDIRS) \
600 ) ; $(BUNDLE_UP_AND_EXIT) \
601 ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700602
603PHONY_LIST += jtreg_tests
604
605################################################################
606
607# packtest
608
609# Expect JPRT to set JPRT_PACKTEST_HOME.
610PACKTEST_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/packtest
611ifdef JPRT_PACKTEST_HOME
612 PACKTEST_HOME = $(JPRT_PACKTEST_HOME)
613endif
614
615packtest: prep $(PACKTEST_HOME)/ptest $(PRODUCT_HOME)
616 ( $(CD) $(PACKTEST_HOME) && \
617 $(PACKTEST_HOME)/ptest \
618 -t "$(PRODUCT_HOME)" \
619 $(PACKTEST_STRESS_OPTION) \
620 $(EXTRA_PACKTEST_OPTIONS) \
621 -W $(ABS_TEST_OUTPUT_DIR) \
622 $(JAVA_ARGS:%=-J %) \
623 $(JAVA_VM_ARGS:%=-J %) \
624 ) ; $(BUNDLE_UP_AND_EXIT)
625
626packtest_stress: PACKTEST_STRESS_OPTION=-s
627packtest_stress: packtest
628
629PHONY_LIST += packtest packtest_stress
630
631################################################################
632
Mandy Chunge2f72482009-05-26 17:47:57 -0700633# perftest to collect statistics
634
635# Expect JPRT to set JPRT_PACKTEST_HOME.
636PERFTEST_HOME = ${TEST_ROOT}/perf
637ifdef JPRT_PERFTEST_HOME
638 PERFTEST_HOME = $(JPRT_PERFTEST_HOME)
639endif
640
641perftest: ( $(PERFTEST_HOME)/perftest \
642 -t $(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)") \
643 -w $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)") \
644 -h $(PERFTEST_HOME) \
645 ) ; $(BUNDLE_UP_AND_EXIT)
646
647
648PHONY_LIST += perftest
649
650################################################################
651
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700652# vmsqe tests
653
654# Expect JPRT to set JPRT_VMSQE_HOME.
655VMSQE_HOME = /java/sqe/comp/vm/testbase/sqe/vm/current/build/latest/vm
656ifdef JPRT_VMSQE_HOME
657 VMSQE_HOME = $(JPRT_VMSQE_HOME)
658endif
659
660# Expect JPRT to set JPRT_RUNVMSQE_HOME.
661RUNVMSQE_HOME = /net/jprt-web.sfbay.sun.com/jprt/allproducts/runvmsqe
662ifdef JPRT_RUNVMSQE_HOME
663 RUNVMSQE_HOME = $(JPRT_RUNVMSQE_HOME)
664endif
665
666# Expect JPRT to set JPRT_TONGA3_HOME.
667TONGA3_HOME = /java/sqe//tools/gtee/harness/tonga
668ifdef JPRT_TONGA3_HOME
669 TONGA3_HOME = $(JPRT_TONGA3_HOME)
670endif
671
672RUNVMSQE_BIN = $(RUNVMSQE_HOME)/bin/runvmsqe
673
674vmsqe_tests: prep $(VMSQE_HOME)/vm $(TONGA3_HOME) $(RUNVMSQE_BIN) $(PRODUCT_HOME)
675 $(RM) -r $(ABS_TEST_OUTPUT_DIR)/vmsqe
676 ( $(CD) $(ABS_TEST_OUTPUT_DIR) && \
677 $(RUNVMSQE_BIN) \
678 -jdk "$(PRODUCT_HOME)" \
679 -o "$(ABS_TEST_OUTPUT_DIR)/vmsqe" \
680 -testbase "$(VMSQE_HOME)/vm" \
681 -tonga "$(TONGA3_HOME)" \
682 -tongajdk "$(ALT_BOOTDIR)" \
683 $(JAVA_ARGS) \
684 $(JAVA_VM_ARGS) \
685 $(RUNVMSQE_TEST_OPTION) \
686 $(EXTRA_RUNVMSQE_OPTIONS) \
687 ) ; $(BUNDLE_UP_AND_EXIT)
688
689vmsqe_jdwp: RUNVMSQE_TEST_OPTION=-jdwp
690vmsqe_jdwp: vmsqe_tests
691
692vmsqe_jdi: RUNVMSQE_TEST_OPTION=-jdi
693vmsqe_jdi: vmsqe_tests
694
695vmsqe_jdb: RUNVMSQE_TEST_OPTION=-jdb
696vmsqe_jdb: vmsqe_tests
697
698vmsqe_quick-jdi: RUNVMSQE_TEST_OPTION=-quick-jdi
699vmsqe_quick-jdi: vmsqe_tests
700
701vmsqe_sajdi: RUNVMSQE_TEST_OPTION=-sajdi
702vmsqe_sajdi: vmsqe_tests
703
704vmsqe_jvmti: RUNVMSQE_TEST_OPTION=-jvmti
705vmsqe_jvmti: vmsqe_tests
706
707vmsqe_hprof: RUNVMSQE_TEST_OPTION=-hprof
708vmsqe_hprof: vmsqe_tests
709
710vmsqe_monitoring: RUNVMSQE_TEST_OPTION=-monitoring
711vmsqe_monitoring: vmsqe_tests
712
713PHONY_LIST += vmsqe_jdwp vmsqe_jdi vmsqe_jdb vmsqe_quick-jdi vmsqe_sajdi \
714 vmsqe_jvmti vmsqe_hprof vmsqe_monitoring vmsqe_tests
715
716################################################################
717
718# jck tests
719
720JCK_WORK_DIR = $(ABS_TEST_OUTPUT_DIR)/JCKwork
721JCK_REPORT_DIR = $(ABS_TEST_OUTPUT_DIR)/JCKreport
722JCK_PROPERTIES = $(ABS_TEST_OUTPUT_DIR)/jck.properties
723JCK_CONFIG = $(ABS_TEST_OUTPUT_DIR)/jck.config
724
725JCK_JAVA_EXE = $(PRODUCT_HOME)/bin/java$(EXESUFFIX)
726
727JCK_JAVATEST_JAR = $(JCK_HOME)/lib/javatest.jar
728JCK_JAVATEST = $(ALT_BOOTDIR)/bin/java -jar $(JCK_JAVATEST_JAR)
729
730$(JCK_CONFIG): $(TEST_ROOT)/JCK-$(JCK_BUNDLE_NAME)-$(JCK_RELEASE)-base.jti
731 $(RM) $@
732 $(MKDIR) -p $(@D)
733 $(CP) $< $@
734
735$(JCK_PROPERTIES): $(PRODUCT_HOME) $(JCK_JAVA_EXE)
736 $(RM) $@
737 $(MKDIR) -p $(@D)
738 $(ECHO) "jck.env.compiler.compRefExecute.cmdAsFile=$(JCK_JAVA_EXE)" >> $@
739 $(ECHO) "jck.env.compiler.compRefExecute.systemRoot=$(SYSTEMROOT)" >> $@
740 $(ECHO) "jck.env.compiler.testCompile.testCompileAPImultiJVM.cmdAsFile=$(JCK_JAVA_EXE)" >> $@
741 $(ECHO) "jck.tests.tests=$(JCK_BUNDLE_TESTDIRS)" >> $@
742
743jck_tests: prep $(JCK_HOME) $(JCK_PROPERTIES) $(JCK_CONFIG) $(JCK_JAVATEST_JAR)
744 $(MKDIR) -p $(JCK_WORK_DIR)
745 ( $(JCK_JAVATEST) \
746 -verbose:commands,non-pass \
747 -testSuite $(JCK_HOME) \
748 -workDir $(JCK_WORK_DIR) \
749 -config $(JCK_CONFIG) \
750 -set -file $(JCK_PROPERTIES) \
751 -runtests \
752 -writeReport $(JCK_REPORT_DIR) \
753 ) ; $(BUNDLE_UP_AND_EXIT)
754
755PHONY_LIST += jck_tests
756
757################################################################
758
759# jck6 tests
760
761JCK6_RELEASE = 6b
762JCK6_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/$(JCK6_RELEASE)/archive/fcs/binaries
763
764# Expect JPRT to set JPRT_JCK6COMPILER_HOME.
765JCK6COMPILER_HOME = $(JCK6_DEFAULT_HOME)/JCK-compiler-$(JCK6_RELEASE)
766ifdef JPRT_JCK6COMPILER_HOME
767 JCK6COMPILER_HOME = $(JPRT_JCK6COMPILER_HOME)
768endif
769
770# Expect JPRT to set JPRT_JCK6RUNTIME_HOME.
771JCK6RUNTIME_HOME = $(JCK6_DEFAULT_HOME)/JCK-runtime-$(JCK6_RELEASE)
772ifdef JPRT_JCK6RUNTIME_HOME
773 JCK6RUNTIME_HOME = $(JPRT_JCK6RUNTIME_HOME)
774endif
775
776# Expect JPRT to set JPRT_JCK6DEVTOOLS_HOME.
777JCK6DEVTOOLS_HOME = $(JCK6_DEFAULT_HOME)/JCK-devtools-$(JCK6_RELEASE)
778ifdef JPRT_JCK6DEVTOOLS_HOME
779 JCK6DEVTOOLS_HOME = $(JPRT_JCK6DEVTOOLS_HOME)
780endif
781
782jck6_tests: JCK_HOME=$(JCK6_HOME)
783jck6_tests: JCK_RELEASE=$(JCK6_RELEASE)
784jck6_tests: jck_tests
785
786jck6compiler: JCK6_HOME=$(JCK6COMPILER_HOME)
787jck6compiler: JCK_BUNDLE_NAME=compiler
788jck6compiler: jck6_tests
789
790jck6compiler_lang: JCK_BUNDLE_TESTDIRS=lang
791jck6compiler_lang: jck6compiler
792
793jck6runtime: JCK6_HOME=$(JCK6RUNTIME_HOME)
794jck6runtime: JCK_BUNDLE_NAME=runtime
795jck6runtime: jck6_tests
796
797jck6runtime_lang: JCK_BUNDLE_TESTDIRS=lang
798jck6runtime_lang: jck6runtime
799
800jck6devtools: JCK6_HOME=$(JCK6DEVTOOLS_HOME)
801jck6devtools: JCK_BUNDLE_NAME=devtools
802jck6devtools: jck6_tests
803
804jck6devtools_lang: JCK_BUNDLE_TESTDIRS=lang
805jck6devtools_lang: jck6devtools
806
807PHONY_LIST += jck6compiler jck6runtime jck6devtools jck6_tests \
808 jck6compiler_lang jck6runtime_lang jck6devtools_lang
809
810################################################################
811
812# jck7 tests
813
814JCK7_RELEASE = 7
815JCK7_DEFAULT_HOME = $(SLASH_JAVA)/re/jck/$(JCK7_RELEASE)/archive/fcs/binaries
816
817# Expect JPRT to set JPRT_JCK7COMPILER_HOME.
818JCK7COMPILER_HOME = $(JCK7_DEFAULT_HOME)/JCK-compiler-$(JCK7_RELEASE)
819ifdef JPRT_JCK7COMPILER_HOME
820 JCK7COMPILER_HOME = $(JPRT_JCK7COMPILER_HOME)
821endif
822
823# Expect JPRT to set JPRT_JCK7RUNTIME_HOME.
824JCK7RUNTIME_HOME = $(JCK7_DEFAULT_HOME)/JCK-runtime-$(JCK7_RELEASE)
825ifdef JPRT_JCK7RUNTIME_HOME
826 JCK7RUNTIME_HOME = $(JPRT_JCK7RUNTIME_HOME)
827endif
828
829# Expect JPRT to set JPRT_JCK7DEVTOOLS_HOME.
830JCK7DEVTOOLS_HOME = $(JCK7_DEFAULT_HOME)/JCK-devtools-$(JCK7_RELEASE)
831ifdef JPRT_JCK7DEVTOOLS_HOME
832 JCK7DEVTOOLS_HOME = $(JPRT_JCK7DEVTOOLS_HOME)
833endif
834
835jck7_tests: JCK_HOME=$(JCK7_HOME)
836jck7_tests: JCK_RELEASE=$(JCK7_RELEASE)
837jck7_tests: jck_tests
838
839jck7compiler: JCK7_HOME=$(JCK7COMPILER_HOME)
840jck7compiler: JCK_BUNDLE_NAME=compiler
841jck7compiler: jck7_tests
842
843jck7compiler_lang: JCK_BUNDLE_TESTDIRS=lang
844jck7compiler_lang: jck7compiler
845
846jck7runtime: JCK7_HOME=$(JCK7RUNTIME_HOME)
847jck7runtime: JCK_BUNDLE_NAME=runtime
848jck7runtime: jck7_tests
849
850jck7runtime_lang: JCK_BUNDLE_TESTDIRS=lang
851jck7runtime_lang: jck7runtime
852
853jck7devtools: JCK7_HOME=$(JCK7DEVTOOLS_HOME)
854jck7devtools: JCK_BUNDLE_NAME=devtools
855jck7devtools: jck7_tests
856
857jck7devtools_lang: JCK_BUNDLE_TESTDIRS=lang
858jck7devtools_lang: jck7devtools
859
860PHONY_LIST += jck7compiler jck7runtime jck7devtools jck7_tests \
861 jck7compiler_lang jck7runtime_lang jck7devtools_lang
862
863################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000864
865# Phony targets (e.g. these are not filenames)
Kelly O'Hair53b5f6a2009-03-31 16:12:56 -0700866.PHONY: all clean prep $(PHONY_LIST)
867
868################################################################
J. Duke319a3b92007-12-01 00:00:00 +0000869