Makefile

Tue, 26 Apr 2011 16:30:00 -0700

author
ohair
date
Tue, 26 Apr 2011 16:30:00 -0700
changeset 334
3bd41d40ab97
parent 330
7e13dbf7e8af
child 340
14b8e7eee105
permissions
-rw-r--r--

6631003: Add hg tip changeset to build image
Reviewed-by: mduigou

duke@2 1 #
ohair@330 2 # Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
duke@2 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@2 4 #
duke@2 5 # This code is free software; you can redistribute it and/or modify it
duke@2 6 # under the terms of the GNU General Public License version 2 only, as
ohair@182 7 # published by the Free Software Foundation. Oracle designates this
duke@2 8 # particular file as subject to the "Classpath" exception as provided
ohair@182 9 # by Oracle in the LICENSE file that accompanied this code.
duke@2 10 #
duke@2 11 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@2 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@2 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@2 14 # version 2 for more details (a copy is included in the LICENSE file that
duke@2 15 # accompanied this code).
duke@2 16 #
duke@2 17 # You should have received a copy of the GNU General Public License version
duke@2 18 # 2 along with this work; if not, write to the Free Software Foundation,
duke@2 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@2 20 #
ohair@182 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@182 22 # or visit www.oracle.com if you need additional information or have any
ohair@182 23 # questions.
duke@2 24 #
duke@2 25
ohair@7 26 BUILD_PARENT_DIRECTORY=.
ohair@7 27
duke@2 28 ifndef TOPDIR
ohair@10 29 TOPDIR:=.
duke@2 30 endif
duke@2 31
duke@2 32 ifndef JDK_TOPDIR
duke@2 33 JDK_TOPDIR=$(TOPDIR)/jdk
duke@2 34 endif
duke@2 35 ifndef JDK_MAKE_SHARED_DIR
duke@2 36 JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
duke@2 37 endif
duke@2 38
ohair@29 39 default: all
ohair@29 40
duke@2 41 include $(JDK_MAKE_SHARED_DIR)/Defs-control.gmk
duke@2 42 include ./make/Defs-internal.gmk
duke@2 43 include ./make/sanity-rules.gmk
duke@2 44 include ./make/hotspot-rules.gmk
duke@2 45 include ./make/langtools-rules.gmk
duke@2 46 include ./make/corba-rules.gmk
duke@2 47 include ./make/jaxp-rules.gmk
duke@2 48 include ./make/jaxws-rules.gmk
duke@2 49 include ./make/jdk-rules.gmk
duke@2 50 include ./make/install-rules.gmk
duke@2 51 include ./make/sponsors-rules.gmk
duke@2 52 include ./make/deploy-rules.gmk
duke@2 53
ohair@288 54 all:: sanity
ohair@29 55
ohair@29 56 ifeq ($(SKIP_FASTDEBUG_BUILD), false)
ohair@29 57 all:: fastdebug_build
ohair@29 58 endif
ohair@29 59
ohair@29 60 ifeq ($(SKIP_DEBUG_BUILD), false)
ohair@29 61 all:: debug_build
ohair@29 62 endif
ohair@29 63
ohair@34 64 all:: all_product_build
ohair@34 65
ohair@317 66 all_product_build::
ohair@317 67
ohrstrom@313 68 # Everything for a full product build
ohrstrom@313 69 ifeq ($(SKIP_PRODUCT_BUILD), false)
ohair@29 70
ohair@29 71 all_product_build:: product_build
ohair@29 72
ohair@29 73 ifeq ($(BUILD_INSTALL), true)
ohair@29 74 all_product_build:: $(INSTALL)
ohair@29 75 clobber:: install-clobber
ohair@29 76 endif
ohrstrom@313 77
ohair@29 78 ifeq ($(BUILD_SPONSORS), true)
ohair@29 79 all_product_build:: $(SPONSORS)
ohair@29 80 clobber:: sponsors-clobber
ohair@29 81 endif
ohrstrom@313 82
ohair@29 83 ifneq ($(SKIP_COMPARE_IMAGES), true)
ohair@29 84 all_product_build:: compare-image
ohair@29 85 endif
ohair@29 86
ohair@29 87 endif
ohair@29 88
ohrstrom@313 89 define StartTimer
ohrstrom@313 90 $(MKDIR) -p $(BUILDTIMESDIR)
ohrstrom@313 91 $(RM) $(BUILDTIMESDIR)/build_time_*
ohrstrom@313 92 $(call RecordStartTime,TOTAL)
ohrstrom@313 93 endef
ohrstrom@313 94
ohrstrom@313 95 define StopTimer
ohrstrom@313 96 $(if $(REPORT_BUILD_TIMES),$(call RecordEndTime,TOTAL) && $(call ReportBuildTimes,$1),)
ohrstrom@313 97 endef
ohair@29 98
ohair@191 99 # Generic build of basic repo series
ohair@334 100 generic_build_repo_series:: $(SOURCE_TIPS)
ohair@29 101 $(MKDIR) -p $(OUTPUTDIR)
duke@2 102 $(MKDIR) -p $(OUTPUTDIR)/j2sdk-image
ohrstrom@313 103 @$(call StartTimer)
duke@2 104
ohair@29 105 ifeq ($(BUILD_LANGTOOLS), true)
ohair@29 106 generic_build_repo_series:: langtools
ohair@29 107 clobber:: langtools-clobber
ohair@29 108 endif
ohair@29 109
ohair@29 110 ifeq ($(BUILD_CORBA), true)
ohair@29 111 generic_build_repo_series:: corba
ohair@29 112 clobber:: corba-clobber
ohair@29 113 endif
ohair@29 114
ohair@29 115 ifeq ($(BUILD_JAXP), true)
ohair@29 116 generic_build_repo_series:: jaxp
ohair@29 117 clobber:: jaxp-clobber
ohair@29 118 endif
ohair@29 119
ohair@29 120 ifeq ($(BUILD_JAXWS), true)
ohair@29 121 generic_build_repo_series:: jaxws
ohair@29 122 clobber:: jaxws-clobber
ohair@29 123 endif
ohair@29 124
ohair@29 125 ifeq ($(BUILD_HOTSPOT), true)
ohair@29 126 generic_build_repo_series:: $(HOTSPOT)
ohair@29 127 clobber:: hotspot-clobber
ohair@29 128 endif
ohair@29 129
ohair@29 130 ifeq ($(BUILD_JDK), true)
ohair@29 131 generic_build_repo_series:: $(JDK_JAVA_EXE)
ohair@29 132 clobber:: jdk-clobber
ohair@29 133 endif
ohair@29 134
ohair@29 135 ifeq ($(BUILD_DEPLOY), true)
ohair@29 136 generic_build_repo_series:: $(DEPLOY)
ohair@29 137 clobber:: deploy-clobber
ohair@29 138 endif
ohair@29 139
ohrstrom@313 140 generic_build_repo_series::
ohrstrom@313 141 @$(call StopTimer,$(if $(DEBUG_NAME),$(DEBUG_NAME)_build,all_product_build))
ohrstrom@313 142
ohair@29 143 # The debug build, fastdebug or debug. Needs special handling.
ohair@29 144 # Note that debug builds do NOT do INSTALL steps, but must be done
ohair@29 145 # after the product build and before the INSTALL step of the product build.
ohair@29 146 #
ohair@29 147 # DEBUG_NAME is fastdebug or debug
ohair@29 148 # ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix
ohair@29 149 # The resulting j2sdk-image is used by the install makefiles to create a
ohair@29 150 # debug install bundle jdk-*-debug-** bundle (tar or zip)
ohair@29 151 # which will install in the debug or fastdebug subdirectory of the
ohair@29 152 # normal product install area.
ohair@29 153 # The install process needs to know what the DEBUG_NAME is, so
ohair@29 154 # look for INSTALL_DEBUG_NAME in the install rules.
ohair@29 155 #
ohair@191 156 # NOTE: On windows, do not use $(ABS_BOOTDIR_OUTPUTDIR)-$(DEBUG_NAME).
ohair@191 157 # Due to the use of short paths in $(ABS_OUTPUTDIR), this may
ohair@191 158 # not be the same location.
ohair@191 159 #
ohair@29 160
ohair@29 161 # Location of fresh bootdir output
ohair@29 162 ABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk
ohair@29 163 FRESH_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/j2sdk-image
ohair@191 164 FRESH_DEBUG_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-$(DEBUG_NAME)/j2sdk-image
ohair@29 165
ohair@29 166 create_fresh_product_bootdir: FRC
ohair@29 167 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
ohair@144 168 GENERATE_DOCS=false \
ohair@29 169 BOOT_CYCLE_SETTINGS= \
ohair@29 170 build_product_image
ohair@29 171
ohair@29 172 create_fresh_debug_bootdir: FRC
ohair@29 173 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
ohair@144 174 GENERATE_DOCS=false \
ohair@29 175 BOOT_CYCLE_DEBUG_SETTINGS= \
ohair@29 176 build_debug_image
ohair@29 177
ohair@29 178 create_fresh_fastdebug_bootdir: FRC
ohair@29 179 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
ohair@144 180 GENERATE_DOCS=false \
ohair@29 181 BOOT_CYCLE_DEBUG_SETTINGS= \
ohair@29 182 build_fastdebug_image
ohair@29 183
ohair@29 184 # Create boot image?
ohair@29 185 ifeq ($(SKIP_BOOT_CYCLE),false)
ohair@29 186 ifneq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
ohair@29 187 DO_BOOT_CYCLE=true
ohair@29 188 endif
ohair@29 189 endif
ohair@29 190
ohrstrom@313 191
ohrstrom@313 192
ohair@29 193 ifeq ($(DO_BOOT_CYCLE),true)
ohair@29 194
ohair@29 195 # Create the bootdir to use in the build
ohair@29 196 product_build:: create_fresh_product_bootdir
ohair@29 197 debug_build:: create_fresh_debug_bootdir
ohair@29 198 fastdebug_build:: create_fresh_fastdebug_bootdir
ohair@29 199
ohair@29 200 # Define variables to be used now for the boot jdk
ohair@29 201 BOOT_CYCLE_SETTINGS= \
ohair@29 202 ALT_BOOTDIR=$(FRESH_BOOTDIR) \
ohair@29 203 ALT_JDK_IMPORT_PATH=$(FRESH_BOOTDIR)
ohair@29 204 BOOT_CYCLE_DEBUG_SETTINGS= \
ohair@29 205 ALT_BOOTDIR=$(FRESH_DEBUG_BOOTDIR) \
ohair@29 206 ALT_JDK_IMPORT_PATH=$(FRESH_DEBUG_BOOTDIR)
ohair@29 207
ohair@29 208 else
ohair@29 209
ohair@29 210 # Use the supplied ALT_BOOTDIR as the boot
ohair@29 211 BOOT_CYCLE_SETTINGS=
ohair@29 212 BOOT_CYCLE_DEBUG_SETTINGS=
ohair@29 213
ohair@29 214 endif
ohair@29 215
ohair@29 216 build_product_image:
ohair@29 217 $(MAKE) \
ohair@29 218 SKIP_FASTDEBUG_BUILD=true \
ohair@29 219 SKIP_DEBUG_BUILD=true \
ohair@29 220 $(BOOT_CYCLE_SETTINGS) \
ohair@29 221 generic_build_repo_series
ohair@29 222
ohair@191 223 # NOTE: On windows, do not use $(ABS_OUTPUTDIR)-$(DEBUG_NAME).
ohair@191 224 # Due to the use of short paths in $(ABS_OUTPUTDIR), this may
ohair@191 225 # not be the same location.
ohair@191 226
ohair@29 227 generic_debug_build:
ohair@29 228 $(MAKE) \
ohair@191 229 ALT_OUTPUTDIR=$(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-$(DEBUG_NAME) \
ohair@29 230 DEBUG_NAME=$(DEBUG_NAME) \
ohair@144 231 GENERATE_DOCS=false \
ohair@29 232 $(BOOT_CYCLE_DEBUG_SETTINGS) \
ohair@29 233 generic_build_repo_series
ohair@29 234
ohair@29 235 build_debug_image:
ohair@29 236 $(MAKE) DEBUG_NAME=debug generic_debug_build
ohair@29 237
ohair@29 238 build_fastdebug_image:
ohair@29 239 $(MAKE) DEBUG_NAME=fastdebug generic_debug_build
ohair@29 240
ohair@29 241 # Build final image
ohair@29 242 product_build:: build_product_image
ohair@29 243 debug_build:: build_debug_image
ohair@29 244 fastdebug_build:: build_fastdebug_image
ohair@29 245
ohair@334 246 # The source tips are stored with the relative path to the repo.
ohair@334 247 # This file will be used when constructing the jdk image.
ohair@334 248 source_tips: $(SOURCE_TIPS)
ohair@334 249 $(CAT) $<
ohair@334 250 $(SOURCE_TIPS): FRC
ohair@334 251 @$(prep-target)
ohair@334 252 @$(call GetSourceTips)
ohair@334 253
ohrstrom@313 254 clobber:: REPORT_BUILD_TIMES=
ohrstrom@313 255 clobber::
duke@2 256 $(RM) -r $(OUTPUTDIR)/*
ohair@191 257 $(RM) -r $(OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-debug/*
ohair@191 258 $(RM) -r $(OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-fastdebug/*
duke@2 259 -($(RMDIR) -p $(OUTPUTDIR) > $(DEV_NULL) 2>&1; $(TRUE))
duke@2 260
duke@2 261 clean: clobber
duke@2 262
ohair@29 263 #
ohair@29 264 # Dev builds
ohair@29 265 #
ohair@29 266
ohair@29 267 dev : dev-build
ohair@29 268
ohair@29 269 dev-build:
ohair@29 270 $(MAKE) DEV_ONLY=true all
ohair@29 271 dev-sanity:
ohair@29 272 $(MAKE) DEV_ONLY=true sanity
ohair@29 273 dev-clobber:
ohair@29 274 $(MAKE) DEV_ONLY=true clobber
duke@2 275
duke@2 276 #
duke@2 277 # Quick jdk verification build
duke@2 278 #
duke@2 279 jdk_only:
duke@2 280 $(MAKE) SKIP_FASTDEBUG_BUILD=true BUILD_HOTSPOT=false all
duke@2 281
duke@2 282
duke@2 283 #
duke@2 284 # Quick jdk verification fastdebug build
duke@2 285 #
duke@2 286 jdk_fastdebug_only:
duke@2 287 $(MAKE) DEBUG_NAME=fastdebug BUILD_HOTSPOT=false BUILD_DEPLOY=false \
duke@2 288 BUILD_INSTALL=false BUILD_SPONSORS=false generic_debug_build
duke@2 289
duke@2 290 #
duke@2 291 # Quick deploy verification fastdebug build
duke@2 292 #
duke@2 293 deploy_fastdebug_only:
duke@2 294 $(MAKE) \
duke@2 295 DEBUG_NAME=fastdebug \
duke@2 296 BUILD_HOTSPOT=false \
duke@2 297 BUILD_JDK=false \
duke@2 298 BUILD_LANGTOOLS=false \
duke@2 299 BUILD_CORBA=false \
duke@2 300 BUILD_JAXP=false \
duke@2 301 BUILD_JAXWS=false \
duke@2 302 BUILD_INSTALL=false \
duke@2 303 BUILD_SPONSORS=false \
duke@2 304 generic_debug_build
duke@2 305
duke@2 306 #
duke@2 307 # Product build (skip debug builds)
duke@2 308 #
duke@2 309 product_only:
duke@2 310 $(MAKE) SKIP_FASTDEBUG_BUILD=true all
duke@2 311
duke@2 312 #
duke@2 313 # Check target
duke@2 314 #
duke@2 315
duke@2 316 check: variable_check
duke@2 317
duke@2 318 #
duke@2 319 # Help target
duke@2 320 #
duke@2 321 help: intro_help target_help variable_help notes_help examples_help
duke@2 322
duke@2 323 # Intro help message
duke@2 324 intro_help:
duke@2 325 @$(ECHO) "\
duke@2 326 Makefile for the JDK builds (all the JDK). \n\
duke@2 327 "
duke@2 328
duke@2 329 # Target help
duke@2 330 target_help:
duke@2 331 @$(ECHO) "\
duke@2 332 --- Common Targets --- \n\
duke@2 333 all -- build the core JDK (default target) \n\
duke@2 334 help -- Print out help information \n\
duke@2 335 check -- Check make variable values for correctness \n\
duke@2 336 sanity -- Perform detailed sanity checks on system and settings \n\
duke@2 337 fastdebug_build -- build the core JDK in 'fastdebug' mode (-g -O) \n\
duke@2 338 debug_build -- build the core JDK in 'debug' mode (-g) \n\
duke@2 339 clean -- remove all built and imported files \n\
duke@2 340 clobber -- same as clean \n\
duke@2 341 "
duke@2 342
duke@2 343 # Variable help (only common ones used by this Makefile)
duke@2 344 variable_help: variable_help_intro variable_list variable_help_end
duke@2 345 variable_help_intro:
duke@2 346 @$(ECHO) "--- Common Variables ---"
duke@2 347 variable_help_end:
duke@2 348 @$(ECHO) " "
duke@2 349
duke@2 350 # One line descriptions for the variables
duke@2 351 OUTPUTDIR.desc = Output directory
duke@2 352 PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
duke@2 353 SLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
duke@2 354 BOOTDIR.desc = JDK used to boot the build
duke@2 355 JDK_IMPORT_PATH.desc = JDK used to import components of the build
duke@2 356 COMPILER_PATH.desc = Compiler install directory
duke@2 357 CACERTS_FILE.desc = Location of certificates file
duke@2 358 DEVTOOLS_PATH.desc = Directory containing zip and gnumake
duke@2 359 CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files
duke@2 360 DXSDK_PATH.desc = Root directory of DirectX SDK
duke@2 361
duke@2 362 # Make variables to print out (description and value)
duke@2 363 VARIABLE_PRINTVAL_LIST += \
duke@2 364 OUTPUTDIR \
duke@2 365 PARALLEL_COMPILE_JOBS \
duke@2 366 SLASH_JAVA \
duke@2 367 BOOTDIR \
duke@2 368 JDK_IMPORT_PATH \
duke@2 369 COMPILER_PATH \
duke@2 370 CACERTS_FILE \
duke@2 371 DEVTOOLS_PATH
duke@2 372
duke@2 373 # Make variables that should refer to directories that exist
duke@2 374 VARIABLE_CHECKDIR_LIST += \
duke@2 375 SLASH_JAVA \
duke@2 376 BOOTDIR \
duke@2 377 JDK_IMPORT_PATH \
duke@2 378 COMPILER_PATH \
duke@2 379 DEVTOOLS_PATH
duke@2 380
duke@2 381 # Make variables that should refer to files that exist
duke@2 382 VARIABLE_CHECKFIL_LIST += \
duke@2 383 CACERTS_FILE
duke@2 384
duke@2 385 # Some are windows specific
duke@2 386 ifeq ($(PLATFORM), windows)
duke@2 387
duke@2 388 VARIABLE_PRINTVAL_LIST += \
ohair@291 389 DXSDK_PATH
duke@2 390
duke@2 391 VARIABLE_CHECKDIR_LIST += \
ohair@291 392 DXSDK_PATH
duke@2 393
duke@2 394 endif
duke@2 395
duke@2 396 # For pattern rules below, so all are treated the same
duke@2 397 DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
duke@2 398 DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
duke@2 399 DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
duke@2 400
duke@2 401 # Complete variable check
duke@2 402 variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
duke@2 403 variable_list: $(DO_PRINTVAL_LIST) variable_check
duke@2 404
duke@2 405 # Pattern rule for printing out a variable
duke@2 406 %.printval:
duke@2 407 @$(ECHO) " ALT_$* - $($*.desc)"
duke@2 408 @$(ECHO) " \t $*=$($*)"
duke@2 409
duke@2 410 # Pattern rule for checking to see if a variable with a directory exists
duke@2 411 %.checkdir:
duke@2 412 @if [ ! -d $($*) ] ; then \
duke@2 413 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
duke@2 414 fi
duke@2 415
duke@2 416 # Pattern rule for checking to see if a variable with a file exists
duke@2 417 %.checkfil:
duke@2 418 @if [ ! -f $($*) ] ; then \
duke@2 419 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
duke@2 420 fi
duke@2 421
duke@2 422 # Misc notes on help
duke@2 423 notes_help:
duke@2 424 @$(ECHO) "\
duke@2 425 --- Notes --- \n\
duke@2 426 - All builds use same output directory unless overridden with \n\
duke@2 427 \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
duke@2 428 \t to use the clean target first. \n\
duke@2 429 - JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
duke@2 430 \t builds or previous release JDK builds will work. \n\
duke@2 431 - The fastest builds have been when the sources and the BOOTDIR are on \n\
duke@2 432 \t local disk. \n\
duke@2 433 "
duke@2 434
duke@2 435 examples_help:
duke@2 436 @$(ECHO) "\
duke@2 437 --- Examples --- \n\
duke@2 438 $(MAKE) fastdebug_build \n\
duke@2 439 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
duke@2 440 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug_build \n\
duke@2 441 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
duke@2 442 $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.5.0 \n\
duke@2 443 $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.6.0 \n\
duke@2 444 "
duke@2 445
duke@2 446 ################################################################
ohair@278 447 # Source bundling
duke@2 448 ################################################################
duke@2 449 ifeq ($(BUNDLE_RULES_AVAILABLE), true)
duke@2 450 include $(BUNDLE_RULES)
duke@2 451 endif
duke@2 452
duke@2 453 ################################################################
ohair@191 454 # rule to test
ohair@191 455 ################################################################
ohair@191 456
ohair@224 457 .NOTPARALLEL: test_run
ohair@191 458
ohair@224 459 test:
ohair@224 460 $(MAKE) test_run
ohair@224 461
ohair@224 462 test_run: test_clean test_start test_summary
ohair@191 463
ohair@191 464 test_start:
ohair@191 465 @$(ECHO) "Tests started at `$(DATE)`"
ohair@191 466
ohair@191 467 test_clean:
ohair@191 468 $(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt
ohair@191 469
ohair@191 470 test_summary: $(OUTPUTDIR)/test_failures.txt
ohair@191 471 @$(ECHO) "#################################################"
ohair@191 472 @$(ECHO) "Tests completed at `$(DATE)`"
ohair@191 473 @( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \
ohair@191 474 || $(ECHO) "No TEST STATS seen in log" )
ohair@191 475 @$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt"
ohair@191 476 @$(ECHO) "#################################################"
ohair@191 477 @if [ -s $< ] ; then \
ohair@191 478 $(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \
ohair@191 479 $(CAT) $<; \
ohair@191 480 exit 1; \
ohair@191 481 else \
ohair@191 482 $(ECHO) "Success! No failures detected"; \
ohair@191 483 fi
ohair@191 484
ohair@191 485 # Get failure list from log
ohair@191 486 $(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt
ohair@191 487 @$(RM) $@
ohair@224 488 @( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@
ohair@191 489
ohair@191 490 # Get log file of all tests run
ohair@191 491 JDK_TO_TEST := $(shell \
ohair@191 492 if [ -d "$(ABS_OUTPUTDIR)/j2sdk-image" ] ; then \
ohair@191 493 $(ECHO) "$(ABS_OUTPUTDIR)/j2sdk-image"; \
ohair@191 494 elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \
ohair@191 495 $(ECHO) "$(ABS_OUTPUTDIR)"; \
ohair@191 496 elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \
ohair@191 497 $(ECHO) "$(PRODUCT_HOME)"; \
ohair@191 498 fi \
ohair@191 499 )
ohair@224 500 TEST_TARGETS=all
ohair@191 501 $(OUTPUTDIR)/test_log.txt:
ohair@191 502 $(RM) $@
ohair@224 503 ( $(CD) test && \
ohair@224 504 $(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \
ohair@191 505 ) | tee $@
ohair@191 506
ohair@191 507 ################################################################
duke@2 508 # JPRT rule to build
duke@2 509 ################################################################
duke@2 510
duke@2 511 include ./make/jprt.gmk
duke@2 512
duke@2 513 ################################################################
duke@2 514 # PHONY
duke@2 515 ################################################################
duke@2 516
ohair@224 517 .PHONY: all test test_run test_start test_summary test_clean \
ohair@29 518 generic_build_repo_series \
ohair@29 519 what clobber insane \
ohair@29 520 dev dev-build dev-sanity dev-clobber \
ohair@29 521 product_build \
ohair@29 522 fastdebug_build \
ohair@29 523 debug_build \
ohair@29 524 build_product_image \
ohair@29 525 build_debug_image \
ohair@29 526 build_fastdebug_image \
ohair@29 527 create_fresh_product_bootdir \
ohair@29 528 create_fresh_debug_bootdir \
ohair@29 529 create_fresh_fastdebug_bootdir \
ohair@29 530 generic_debug_build
duke@2 531
ohair@7 532 # Force target
ohair@7 533 FRC:
ohair@7 534

mercurial