test/Makefile

Print this page
rev 7806 : 8015068: Use jtreg -exclude for handling problemList.txt exclusions
Reviewed-by: duke


  39 CD        = cd
  40 CHMOD     = chmod
  41 CP        = cp
  42 CUT       = cut
  43 DIRNAME   = dirname
  44 ECHO      = echo
  45 EGREP     = egrep
  46 EXPAND    = expand
  47 FIND      = find
  48 MKDIR     = mkdir
  49 PWD       = pwd
  50 SED       = sed
  51 SORT      = sort
  52 TEE       = tee
  53 UNAME     = uname
  54 UNIQ      = uniq
  55 WC        = wc
  56 ZIP       = zip
  57 
  58 # Get OS name from uname
  59 UNAME_S := $(shell $(UNAME) -s)
  60 
  61 # Commands to run on paths to make mixed paths for java on windows
  62 GETMIXEDPATH=$(ECHO)
  63 
  64 # Location of developer shared files
  65 SLASH_JAVA = /java
  66 
  67 # Platform specific settings
  68 ifeq ($(UNAME_S), SunOS)
  69   OS_NAME     = solaris
  70   OS_ARCH    := $(shell $(UNAME) -p)
  71   OS_VERSION := $(shell $(UNAME) -r)
  72 endif
  73 ifeq ($(UNAME_S), Linux)
  74   OS_NAME     = linux
  75   OS_ARCH    := $(shell $(UNAME) -m)
  76   # 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
  80   OS_VERSION := $(shell $(UNAME) -r)
  81 endif
  82 ifeq ($(UNAME_S), Darwin)
  83   OS_NAME     = macosx
  84   OS_ARCH    := $(shell $(UNAME) -m)
  85   # Check for unknown arch, try uname -p if uname -m says unknown
  86   ifeq ($(OS_ARCH),unknown)
  87     OS_ARCH    := $(shell $(UNAME) -p)
  88   endif
  89   OS_VERSION := $(shell $(UNAME) -r)
  90 endif
  91 ifeq ($(OS_NAME),)
  92   OS_NAME = windows
  93   # GNU Make or MKS overrides $(PROCESSOR_ARCHITECTURE) to always
  94   # return "x86". Use the first word of $(PROCESSOR_IDENTIFIER) instead.
  95   ifeq ($(PROCESSOR_IDENTIFIER),)
  96     PROC_ARCH:=$(shell $(UNAME) -m)
  97   else
  98     PROC_ARCH:=$(word 1, $(PROCESSOR_IDENTIFIER))
  99   endif
 100   OS_ARCH:=$(PROC_ARCH)
 101   SLASH_JAVA = J:
 102   EXESUFFIX = .exe
 103   # These need to be different depending on MKS or CYGWIN
 104   ifeq ($(findstring cygdrive,$(shell ($(CD) C:/ && $(PWD)))), )
 105     GETMIXEDPATH  = dosname -s
 106     OS_VERSION   := $(shell $(UNAME) -r)
 107   else
 108     GETMIXEDPATH  = cygpath -m -s
 109     OS_VERSION   := $(shell $(UNAME) -s | $(CUT) -d'-' -f2)
 110   endif
 111 endif
 112 
 113 # Only want major and minor numbers from os version
 114 OS_VERSION := $(shell $(ECHO) "$(OS_VERSION)" | $(CUT) -d'.' -f1,2)
 115 
 116 # Name to use for x86_64 arch (historically amd64, but should change someday)
 117 OS_ARCH_X64_NAME:=amd64
 118 #OS_ARCH_X64_NAME:=x64
 119 
 120 # Alternate arch names (in case this arch is known by a second name)
 121 #   PROBLEM_LISTS may use either name.
 122 OS_ARCH2-amd64:=x64
 123 #OS_ARCH2-x64:=amd64
 124 
 125 # Try and use the arch names consistently
 126 OS_ARCH:=$(patsubst x64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 127 OS_ARCH:=$(patsubst X64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 128 OS_ARCH:=$(patsubst AMD64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 129 OS_ARCH:=$(patsubst amd64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 130 OS_ARCH:=$(patsubst x86_64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 131 OS_ARCH:=$(patsubst 8664,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 132 OS_ARCH:=$(patsubst EM64T,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 133 OS_ARCH:=$(patsubst em64t,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 134 OS_ARCH:=$(patsubst intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 135 OS_ARCH:=$(patsubst Intel64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 136 OS_ARCH:=$(patsubst INTEL64,$(OS_ARCH_X64_NAME),$(OS_ARCH))
 137 OS_ARCH:=$(patsubst IA64,ia64,$(OS_ARCH))
 138 OS_ARCH:=$(patsubst X86,i586,$(OS_ARCH))
 139 OS_ARCH:=$(patsubst x86,i586,$(OS_ARCH))
 140 OS_ARCH:=$(patsubst i386,i586,$(OS_ARCH))
 141 OS_ARCH:=$(patsubst i486,i586,$(OS_ARCH))
 142 OS_ARCH:=$(patsubst i686,i586,$(OS_ARCH))
 143 OS_ARCH:=$(patsubst 386,i586,$(OS_ARCH))
 144 OS_ARCH:=$(patsubst 486,i586,$(OS_ARCH))
 145 OS_ARCH:=$(patsubst 586,i586,$(OS_ARCH))
 146 OS_ARCH:=$(patsubst 686,i586,$(OS_ARCH))
 147 
 148 # Default  ARCH_DATA_MODEL settings
 149 ARCH_DATA_MODEL-i586 = 32
 150 ARCH_DATA_MODEL-$(OS_ARCH_X64_NAME) = 64
 151 ARCH_DATA_MODEL-ia64 = 64
 152 ARCH_DATA_MODEL-sparc = 32
 153 ARCH_DATA_MODEL-sparcv9 = 64
 154 
 155 # If ARCH_DATA_MODEL is not defined, try and pick a reasonable default
 156 ifndef ARCH_DATA_MODEL
 157   ARCH_DATA_MODEL:=$(ARCH_DATA_MODEL-$(OS_ARCH))
 158 endif
 159 ifndef ARCH_DATA_MODEL
 160   ARCH_DATA_MODEL=32
 161 endif
 162 
 163 # Platform directory name
 164 PLATFORM_OS = $(OS_NAME)-$(OS_ARCH)
 165 
 166 # Check ARCH_DATA_MODEL, adjust OS_ARCH accordingly on solaris
 167 ARCH_DATA_MODEL_ERROR= \
 168   ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) cannot be used with $(PLATFORM_OS)
 169 ifeq ($(ARCH_DATA_MODEL),64)
 170   ifeq ($(PLATFORM_OS),solaris-i586)
 171     OS_ARCH=$(OS_ARCH_X64_NAME)
 172   endif
 173   ifeq ($(PLATFORM_OS),solaris-sparc)
 174     OS_ARCH=sparcv9
 175   endif
 176   ifeq ($(OS_ARCH),i586)
 177     x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 178   endif
 179   ifeq ($(OS_ARCH),sparc)
 180     x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 181   endif
 182 else
 183   ifeq ($(ARCH_DATA_MODEL),32)
 184     ifeq ($(OS_ARCH),$(OS_ARCH_X64_NAME))
 185       x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 186     endif
 187     ifeq ($(OS_ARCH),ia64)
 188       x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 189     endif
 190     ifeq ($(OS_ARCH),sparcv9)
 191       x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 192     endif
 193   else
 194     x:=$(warning "WARNING: $(ARCH_DATA_MODEL_ERROR)")
 195   endif
 196 endif
 197 
 198 # Alternate OS_ARCH name (defaults to OS_ARCH)
 199 OS_ARCH2:=$(OS_ARCH2-$(OS_ARCH))
 200 ifeq ($(OS_ARCH2),)
 201   OS_ARCH2:=$(OS_ARCH)
 202 endif
 203 
 204 # Root of this test area (important to use full paths in some places)
 205 TEST_ROOT := $(shell $(PWD))
 206 
 207 # Root of all test results
 208 ifdef ALT_OUTPUTDIR
 209   ABS_OUTPUTDIR = $(ALT_OUTPUTDIR)
 210 else
 211   ABS_OUTPUTDIR = $(TEST_ROOT)/../build/$(PLATFORM_OS)
 212 endif

 213 ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
 214 ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
 215 
 216 # Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
 217 ifndef PRODUCT_HOME
 218   # Try to use j2sdk-image if it exists
 219   ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/j2sdk-image
 220   PRODUCT_HOME :=                                       \
 221     $(shell                                             \
 222       if [ -d $(ABS_JDK_IMAGE) ] ; then                 \
 223          $(ECHO) "$(ABS_JDK_IMAGE)";                    \
 224        else                                             \
 225          $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)";          \
 226        fi)
 227   PRODUCT_HOME := $(PRODUCT_HOME)
 228 endif
 229 
 230 # Expect JPRT to set JPRT_PRODUCT_ARGS (e.g. -server etc.)
 231 #   Should be passed into 'java' only.
 232 #   Could include: -d64 -server -client OR any java option
 233 ifdef JPRT_PRODUCT_ARGS
 234   JAVA_ARGS = $(JPRT_PRODUCT_ARGS)
 235 endif
 236 
 237 # Expect JPRT to set JPRT_PRODUCT_VM_ARGS (e.g. -Xcomp etc.)
 238 #   Should be passed into anything running the vm (java, javac, javadoc, ...).
 239 ifdef JPRT_PRODUCT_VM_ARGS
 240   JAVA_VM_ARGS = $(JPRT_PRODUCT_VM_ARGS)
 241 endif
 242 
 243 # Check JAVA_ARGS arguments based on ARCH_DATA_MODEL etc.
 244 ifeq ($(OS_NAME),solaris)
 245   D64_ERROR_MESSAGE=Mismatch between ARCH_DATA_MODEL=$(ARCH_DATA_MODEL) and use of -d64 in JAVA_ARGS=$(JAVA_ARGS)
 246   ifeq ($(ARCH_DATA_MODEL),32)
 247     ifneq ($(findstring -d64,$(JAVA_ARGS)),)
 248       x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
 249     endif
 250   endif
 251   ifeq ($(ARCH_DATA_MODEL),64)
 252     ifeq ($(findstring -d64,$(JAVA_ARGS)),)
 253       x:=$(warning "WARNING: $(D64_ERROR_MESSAGE)")
 254     endif
 255   endif
 256 endif
 257 
 258 # Macro to run make and set the shared library permissions
 259 define SharedLibraryPermissions
 260 $(MAKE) SHARED_LIBRARY_DIR=$1 UNIQUE_DIR=$@ shared_library_permissions
 261 endef
 262 
 263 # Expect JPRT to set JPRT_ARCHIVE_BUNDLE (path to zip bundle for results)
 264 ARCHIVE_BUNDLE = $(ABS_TEST_OUTPUT_DIR)/ARCHIVE_BUNDLE.zip
 265 ifdef JPRT_ARCHIVE_BUNDLE
 266   ARCHIVE_BUNDLE = $(JPRT_ARCHIVE_BUNDLE)


 267 endif
 268 
 269 # How to create the test bundle (pass or fail, we want to create this)
 270 #   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
 271 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
 272                    && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
 273                    && $(CHMOD) -R a+r . \
 274                    && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
 275 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/JTreport/text/summary.txt


 276 STATS_TXT_NAME = Stats.txt
 277 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/$(STATS_TXT_NAME)
 278 RUNLIST   = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/runlist.txt
 279 PASSLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/passlist.txt
 280 FAILLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/faillist.txt
 281 EXITCODE  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)")/exitcode.txt
 282 
 283 TESTEXIT = \
 284   if [ ! -s $(EXITCODE) ] ; then \
 285     $(ECHO) "ERROR: EXITCODE file not filled in."; \
 286     $(ECHO) "1" > $(EXITCODE); \
 287   fi ; \
 288   testExitCode=`$(CAT) $(EXITCODE)`; \
 289   $(ECHO) "EXIT CODE: $${testExitCode}"; \
 290   exit $${testExitCode}
 291 
 292 BUNDLE_UP_AND_EXIT = \
 293 ( \
 294   jtregExitCode=$$? && \
 295   _summary="$(SUMMARY_TXT)"; \
 296   $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
 297   $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
 298   if [ -r "$${_summary}" ] ; then \
 299     $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
 300     $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
 301     $(EGREP) ' Passed\.' $(RUNLIST) \
 302       | $(EGREP) -v ' Error\.' \
 303       | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
 304     ( $(EGREP) ' Failed\.' $(RUNLIST); \
 305       $(EGREP) ' Error\.' $(RUNLIST); \
 306       $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
 307       | $(SORT) | $(UNIQ) > $(FAILLIST); \
 308     if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
 309       $(EXPAND) $(FAILLIST) \
 310         | $(CUT) -d' ' -f1 \
 311         | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
 312       if [ $${jtregExitCode} = 0 ] ; then \
 313         jtregExitCode=1; \
 314       fi; \
 315     fi; \
 316     runc="`$(CAT) $(RUNLIST)      | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 317     passc="`$(CAT) $(PASSLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 318     failc="`$(CAT) $(FAILLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 319     exclc="`$(CAT) $(EXCLUDELIST) | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 320     $(ECHO) "TEST STATS: name=$(UNIQUE_DIR)  run=$${runc}  pass=$${passc}  fail=$${failc}  excluded=$${exclc}" \
 321       >> $(STATS_TXT); \
 322   else \
 323     $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
 324   fi; \
 325   if [ -f $(STATS_TXT) ] ; then \
 326     $(CAT) $(STATS_TXT); \
 327   fi; \
 328   $(ZIP_UP_RESULTS) ; \
 329   $(TESTEXIT) \
 330 )
 331 
 332 ################################################################
 333 
 334 # Default make rule (runs default jdk tests)
 335 all: jdk_default
 336         @$(ECHO) "Testing completed successfully"
 337 
 338 # Prep for output
 339 prep:
 340         @$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
 341         @$(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`
 342 
 343 # Cleanup
 344 clean:
 345         @$(RM) -r $(ABS_TEST_OUTPUT_DIR)
 346         @$(RM) $(ARCHIVE_BUNDLE)
 347 
 348 ################################################################
 349 
 350 # jtreg tests
 351 
 352 # Expect JT_HOME to be set for jtreg tests. (home for jtreg)
 353 ifndef JT_HOME
 354   JT_HOME = $(SLASH_JAVA)/re/jtreg/4.1/promoted/latest/binaries/jtreg
 355   ifdef JPRT_JTREG_HOME
 356     JT_HOME = $(JPRT_JTREG_HOME)



 357   endif
 358 endif
 359 
 360 # Expect JPRT to set TESTDIRS to the jtreg test dirs
 361 ifndef TESTDIRS
 362   TESTDIRS = demo
 363 endif
 364 
 365 # Some tests annoy me and fail frequently
 366 PROBLEM_LIST=ProblemList.txt
 367 PROBLEM_LISTS=$(PROBLEM_LIST) $(wildcard closed/$(PROBLEM_LIST))
 368 EXCLUDELIST=$(ABS_TEST_OUTPUT_DIR)/excludelist.txt
 369 
 370 # Create exclude list for this platform and arch
 371 ifdef NO_EXCLUDES
 372 $(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
 373         @$(ECHO) "NOTHING_EXCLUDED" > $@
 374 else
 375 $(EXCLUDELIST): $(PROBLEM_LISTS) $(TEST_DEPENDENCIES)
 376         @$(RM) $@ $@.temp1 $@.temp2
 377         @(($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-all'          ) ;\
 378           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(PLATFORM_OS)'          ) ;\
 379           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_ARCH2)'  ) ;\
 380           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- '$(OS_NAME)-$(OS_VERSION)') ;\
 381           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH)'      ) ;\
 382           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-$(OS_ARCH2)'     ) ;\
 383           ($(CAT) $(PROBLEM_LISTS) | $(EGREP) -- 'generic-all'             ) ;\
 384           ($(ECHO) "#") ;\
 385         ) | $(SED) -e 's@^[\ ]*@@' \
 386           | $(EGREP) -v '^#' > $@.temp1
 387         @for tdir in $(TESTDIRS) SOLARIS_10_SH_BUG_NO_EMPTY_FORS ; do \
 388           ( ( $(CAT) $@.temp1 | $(EGREP) "^$${tdir}" ) ; $(ECHO) "#" ) >> $@.temp2 ; \
 389         done
 390         @$(ECHO) "# at least one line" >> $@.temp2
 391         @( $(EGREP) -v '^#' $@.temp2 ; true ) > $@
 392         @$(ECHO) "Excluding list contains `$(EXPAND) $@ | $(WC) -l` items"
 393 endif
 394 
 395 # Select list of directories that exist
 396 define TestDirs
 397 $(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
 398 endef
 399 # Running batches of tests with or without agentvm
 400 define RunBatch
 401 $(ECHO) "Running tests: $?"




 402 $(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" UNIQUE_DIR=$@ jtreg_tests
 403 endef




 404 define SummaryInfo
 405 $(ECHO) "########################################################"
 406 $(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
 407 $(ECHO) "########################################################"
 408 endef
 409 
 410 # ------------------------------------------------------------------
 411 
 412 # Batches of tests (somewhat arbitrary assigments to jdk_* targets)
 413 # NOTE: These *do not* run the same tests as make/jprt.properties
 414 JDK_DEFAULT_TARGETS =
 415 JDK_ALL_TARGETS =
 416 
 417 JDK_ALL_TARGETS += jdk_awt
 418 jdk_awt: $(call TestDirs, com/sun/awt java/awt sun/awt \
 419          javax/imageio javax/print sun/pisces)
 420         $(call RunBatch)
 421 
 422 JDK_ALL_TARGETS += jdk_beans1
 423 JDK_DEFAULT_TARGETS += jdk_beans1
 424 jdk_beans1: $(call TestDirs, \
 425             java/beans/beancontext java/beans/PropertyChangeSupport \
 426             java/beans/Introspector java/beans/Performance \
 427             java/beans/VetoableChangeSupport java/beans/Statement)
 428         $(call RunBatch)
 429 
 430 JDK_ALL_TARGETS += jdk_beans2
 431 jdk_beans2: $(call TestDirs, \
 432             java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
 433             java/beans/PropertyEditor)
 434         $(call RunBatch)
 435 
 436 JDK_ALL_TARGETS += jdk_beans3
 437 jdk_beans3: $(call TestDirs, java/beans/XMLEncoder)
 438         $(call RunBatch)
 439 
 440 # All beans tests
 441 jdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
 442         @$(SummaryInfo)
 443 





 444 JDK_ALL_TARGETS += jdk_io
 445 JDK_DEFAULT_TARGETS += jdk_io
 446 jdk_io: $(call TestDirs, java/io)
 447         $(call RunBatch)
 448 
 449 JDK_ALL_TARGETS += jdk_lang
 450 JDK_DEFAULT_TARGETS += jdk_lang
 451 jdk_lang: $(call TestDirs, java/lang sun/invoke sun/misc sun/reflect vm)


 452         $(call RunBatch)
 453 
 454 JDK_ALL_TARGETS += jdk_jmx
 455 jdk_jmx: $(call TestDirs, javax/management com/sun/jmx)
 456         $(call RunBatch)
 457 
 458 JDK_ALL_TARGETS += jdk_management
 459 jdk_management: $(call TestDirs, com/sun/management sun/management)
 460         $(call RunBatch)
 461 
 462 JDK_ALL_TARGETS += jdk_math
 463 JDK_DEFAULT_TARGETS += jdk_math
 464 jdk_math: $(call TestDirs, java/math)
 465         $(call RunBatch)
 466 
 467 JDK_DEFAULT_TARGETS += jdk_time
 468 jdk_time: $(call TestDirs, java/time)
 469         $(call RunBatch)
 470 
 471 JDK_ALL_TARGETS += jdk_other


 479           javax/xml/jaxp \
 480           javax/xml/soap \
 481           javax/xml/ws com/sun/internal/ws com/sun/org/glassfish \
 482           jdk/asm \
 483           jdk/lambda \
 484           com/sun/org/apache/xerces \
 485           com/sun/corba \
 486           com/sun/tracing \
 487           sun/usagetracker)
 488         $(call RunBatch)
 489 
 490 JDK_ALL_TARGETS += jdk_net
 491 JDK_DEFAULT_TARGETS += jdk_net
 492 jdk_net: $(call TestDirs, com/sun/net java/net sun/net com/oracle/net)
 493         $(call RunBatch)
 494 
 495 jdk_nio: $(call TestDirs, java/nio sun/nio com/oracle/nio)
 496         $(call SharedLibraryPermissions,java/nio/channels)
 497         $(call RunBatch)
 498 
 499 jdk_sctp: $(call TestDirs, com/sun/nio/sctp)
 500         $(call RunBatch)
 501 
 502 JDK_ALL_TARGETS += jdk_rmi
 503 jdk_rmi: $(call TestDirs, java/rmi sun/rmi javax/rmi/ssl)
 504         $(call RunBatch)
 505 



 506 JDK_ALL_TARGETS += jdk_security1
 507 JDK_DEFAULT_TARGETS += jdk_security1
 508 jdk_security1: $(call TestDirs, java/security)
 509         $(call RunBatch)
 510 
 511 JDK_ALL_TARGETS += jdk_security2
 512 jdk_security2: $(call TestDirs, javax/crypto javax/xml/crypto com/sun/crypto)
 513         $(call RunBatch)
 514 
 515 JDK_ALL_TARGETS += jdk_security3
 516 jdk_security3: $(call TestDirs, com/sun/security lib/security javax/security \
 517         sun/security com/sun/org/apache/xml/internal/security \
 518         com/oracle/security)
 519         $(call SharedLibraryPermissions,sun/security)
 520         $(call RunBatch)
 521 
 522 # All security tests
 523 jdk_security: jdk_security1 jdk_security2 jdk_security3
 524         @$(SummaryInfo)
 525 
 526 JDK_ALL_TARGETS += jdk_sound
 527 jdk_sound: $(call TestDirs, javax/sound)
 528         $(call RunBatch)
 529 
 530 JDK_ALL_TARGETS += jdk_swing
 531 jdk_swing: $(call TestDirs, javax/swing sun/java2d \
 532            demo/jfc com/sun/java/swing)
 533         $(call RunBatch)
 534 
 535 JDK_ALL_TARGETS += jdk_text
 536 JDK_DEFAULT_TARGETS += jdk_text
 537 jdk_text: $(call TestDirs, java/text sun/text)
 538         $(call RunBatch)
 539 
 540 JDK_ALL_TARGETS += jdk_jdi
 541 jdk_jdi: $(call TestDirs, com/sun/jdi)
 542         $(call RunBatch)
 543 
 544 JDK_ALL_TARGETS += jdk_tools
 545 jdk_tools: $(call TestDirs, com/sun/tools sun/jvmstat sun/tools tools)
 546         $(call SharedLibraryPermissions,tools/launcher)
 547         $(call RunBatch)
 548 
 549 ifdef OPENJDK
 550 jdk_jfr:
 551 else
 552 JDK_ALL_TARGETS += jdk_jfr
 553 jdk_jfr: $(call TestDirs, com/oracle/jfr)
 554         $(call RunBatch)
 555 endif
 556 
 557 JDK_ALL_TARGETS += jdk_util
 558 JDK_DEFAULT_TARGETS += jdk_util
 559 jdk_util: $(call TestDirs, java/util sun/util)
 560         $(call RunBatch)
 561 
 562 # ------------------------------------------------------------------
 563 
 564 # Run default tests
 565 # note that this *does not* have the same meaning as jprt.properties :: jprt.make.rule.default.test.targets
 566 jdk_default: $(JDK_DEFAULT_TARGETS)
 567         @$(SummaryInfo)
 568 
 569 # Run core tests
 570 # please keep this in sync with jdk/make/jprt.properties :: jprt.make.rule.core.test.targets
 571 jdk_core: jdk_lang jdk_math jdk_util jdk_io jdk_net jdk_nio \
 572         jdk_security1 jdk_security2 jdk_security3 jdk_rmi \
 573         jdk_management jdk_jmx jdk_text jdk_tools jdk_jfr jdk_other
 574         @$(SummaryInfo)
 575 
 576 # Run all tests


 607 JTREG_TIMEOUT_OPTION =  -timeoutFactor:4
 608 JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
 609 # Set the max memory for jtreg control vm
 610 JTREG_MEMORY_OPTION = -J-Xmx512m
 611 JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
 612 # Add any extra options
 613 JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
 614 # Set other vm and test options
 615 JTREG_TEST_OPTIONS = $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
 616 # Set the GC options for test vms
 617 #JTREG_GC_OPTION = -vmoption:-XX:+UseSerialGC
 618 #JTREG_TEST_OPTIONS += $(JTREG_GC_OPTION)
 619 # Set the max memory for jtreg target test vms
 620 JTREG_TESTVM_MEMORY_OPTION = -vmoption:-Xmx512m
 621 JTREG_TEST_OPTIONS += $(JTREG_TESTVM_MEMORY_OPTION)
 622 
 623 # Make sure jtreg exists
 624 $(JTREG): $(JT_HOME)
 625 
 626 # Run jtreg
 627 jtreg_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;                                                  \
 634             $(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)                                          \

 643         ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
 644 
 645 # 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 #
 658 shared_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


  39 CD        = cd
  40 CHMOD     = chmod
  41 CP        = cp
  42 CUT       = cut
  43 DIRNAME   = dirname
  44 ECHO      = echo
  45 EGREP     = egrep
  46 EXPAND    = expand
  47 FIND      = find
  48 MKDIR     = mkdir
  49 PWD       = pwd
  50 SED       = sed
  51 SORT      = sort
  52 TEE       = tee
  53 UNAME     = uname
  54 UNIQ      = uniq
  55 WC        = wc
  56 ZIP       = zip
  57 
  58 # Get OS name from uname
  59 UNAME_O := $(shell $(UNAME) -o)
  60 
  61 # Commands to run on paths to make mixed paths for java on windows
  62 ifeq ($(UNAME_O), Cygwin)













































  63   GETMIXEDPATH  = cygpath -m -s









































































  64 else
  65   GETMIXEDPATH=$(ECHO)


















  66 endif
  67 
  68 # Root of this test area (important to use full paths in some places)
  69 TEST_ROOT := $(shell $(PWD))
  70 
  71 # Root of all test results
  72 ifdef ALT_OUTPUTDIR
  73   ABS_OUTPUTDIR = $(shell $(CD) $(ALT_OUTPUTDIR); $(PWD))
  74 else
  75   ABS_OUTPUTDIR = $(TEST_ROOT)
  76 endif
  77 
  78 ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
  79 ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
  80 
  81 # Expect JPRT to set PRODUCT_HOME (the product or jdk in this case to test)
  82 ifndef PRODUCT_HOME
  83   # Try to use j2sdk-image if it exists
  84   ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/images/j2sdk-image
  85   PRODUCT_HOME :=                                       \
  86     $(shell                                             \
  87       if [ -d $(ABS_JDK_IMAGE) ] ; then                 \
  88          $(ECHO) "$(ABS_JDK_IMAGE)";                    \
  89        else                                             \
  90          $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)";          \
  91        fi)
  92   PRODUCT_HOME := $(PRODUCT_HOME)
  93 endif
  94 
  95 # Expect JPRT to set JPRT_PRODUCT_ARGS (e.g. -server etc.)
  96 #   Should be passed into 'java' only.
  97 #   Could include: -d64 -server -client OR any java option
  98 ifdef JPRT_PRODUCT_ARGS
  99   JAVA_ARGS = $(JPRT_PRODUCT_ARGS)
 100 endif
 101 
 102 # Expect JPRT to set JPRT_PRODUCT_VM_ARGS (e.g. -Xcomp etc.)
 103 #   Should be passed into anything running the vm (java, javac, javadoc, ...).
 104 ifdef JPRT_PRODUCT_VM_ARGS
 105   JAVA_VM_ARGS = $(JPRT_PRODUCT_VM_ARGS)
 106 endif
 107 















 108 # Macro to run make and set the shared library permissions
 109 define SharedLibraryPermissions
 110 $(MAKE) SHARED_LIBRARY_DIR=$1 UNIQUE_DIR=$@ shared_library_permissions
 111 endef
 112 
 113 # Expect JPRT to set JPRT_ARCHIVE_BUNDLE (path to zip bundle for results)

 114 ifdef JPRT_ARCHIVE_BUNDLE
 115   ARCHIVE_BUNDLE = $(JPRT_ARCHIVE_BUNDLE)
 116 else
 117   ARCHIVE_BUNDLE = $(ABS_TEST_OUTPUT_DIR)/ARCHIVE_BUNDLE.zip
 118 endif
 119 
 120 # How to create the test bundle (pass or fail, we want to create this)
 121 #   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
 122 ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
 123                    && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
 124                    && $(CHMOD) -R a+r . \
 125                    && $(ZIP) -q -r $(ARCHIVE_BUNDLE) . )
 126 
 127 # important results files
 128 SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt")
 129 STATS_TXT_NAME = Stats.txt
 130 STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)")
 131 RUNLIST   = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/runlist.txt")
 132 PASSLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/passlist.txt")
 133 FAILLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/faillist.txt")
 134 EXITCODE  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/exitcode.txt")
 135 
 136 TESTEXIT = \
 137   if [ ! -s $(EXITCODE) ] ; then \
 138     $(ECHO) "ERROR: EXITCODE file not filled in."; \
 139     $(ECHO) "1" > $(EXITCODE); \
 140   fi ; \
 141   testExitCode=`$(CAT) $(EXITCODE)`; \
 142   $(ECHO) "EXIT CODE: $${testExitCode}"; \
 143   exit $${testExitCode}
 144 
 145 BUNDLE_UP_AND_EXIT = \
 146 ( \
 147   jtregExitCode=$$? && \
 148   _summary="$(SUMMARY_TXT)"; \
 149   $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
 150   $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
 151   if [ -r "$${_summary}" ] ; then \
 152     $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
 153     $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
 154     $(EGREP) ' Passed\.' $(RUNLIST) \
 155       | $(EGREP) -v ' Error\.' \
 156       | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
 157     ( $(EGREP) ' Failed\.' $(RUNLIST); \
 158       $(EGREP) ' Error\.' $(RUNLIST); \
 159       $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
 160       | $(SORT) | $(UNIQ) > $(FAILLIST); \
 161     if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
 162       $(EXPAND) $(FAILLIST) \
 163         | $(CUT) -d' ' -f1 \
 164         | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
 165       if [ $${jtregExitCode} = 0 ] ; then \
 166         jtregExitCode=1; \
 167       fi; \
 168     fi; \
 169     runc="`$(CAT) $(RUNLIST)      | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 170     passc="`$(CAT) $(PASSLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 171     failc="`$(CAT) $(FAILLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
 172     exclc="FIXME CODETOOLS-7900176"; \
 173     $(ECHO) "TEST STATS: name=$(UNIQUE_DIR)  run=$${runc}  pass=$${passc}  fail=$${failc}  excluded=$${exclc}" \
 174       >> $(STATS_TXT); \
 175   else \
 176     $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
 177   fi; \
 178   if [ -f $(STATS_TXT) ] ; then \
 179     $(CAT) $(STATS_TXT); \
 180   fi; \
 181   $(ZIP_UP_RESULTS) ; \
 182   $(TESTEXIT) \
 183 )
 184 
 185 ################################################################
 186 
 187 # Default make rule (runs default jdk tests)
 188 all: jdk_default
 189         @$(ECHO) "Testing completed successfully"
 190 
 191 # Prep for output
 192 prep:
 193         @$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
 194         @$(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`
 195 
 196 # Cleanup
 197 clean:
 198         @$(RM) -r $(ABS_TEST_OUTPUT_DIR)
 199         @$(RM) $(ARCHIVE_BUNDLE)
 200 
 201 ################################################################
 202 
 203 # jtreg tests
 204 
 205 # Expect JT_HOME to be set for jtreg tests. (home for jtreg)
 206 ifndef JT_HOME

 207   ifdef JPRT_JTREG_HOME
 208     JT_HOME = $(JPRT_JTREG_HOME)
 209   else
 210     # maybe it's on the path?
 211     JT_HOME = $(shell which jtreg 2> /dev/null | grep -v '^no jtreg in')
 212   endif
 213 endif
 214 
 215 # Problematic tests to be excluded
 216 PROBLEM_LISTS=$(call MixedDirs,$(wildcard ProblemList.txt closed/ProblemList.txt))







 217 
 218 # Create exclude list for this platform and arch
 219 ifdef NO_EXCLUDES
 220   JTREG_EXCLUSIONS =

 221 else
 222   JTREG_EXCLUSIONS = $(PROBLEM_LISTS:%=-exclude:%)

















 223 endif
 224 
 225 # Select list of directories that exist
 226 define TestDirs
 227 $(foreach i,$1,$(wildcard ${i})) $(foreach i,$1,$(wildcard closed/${i}))
 228 endef
 229 # convert list of directories to dos paths
 230 define MixedDirs
 231 $(foreach i,$1,$(shell $(GETMIXEDPATH) "${i}"))
 232 endef
 233 # Running a batch of tests
 234 define RunTests
 235 $(ECHO) "Running tests: $@"
 236 $(MAKE) TEST_DEPENDENCIES="$?" TESTDIRS="$?" UNIQUE_DIR=$@ jtreg_tests
 237 endef
 238 # Running a batch of tests (ensuring that there are tests to run)
 239 define RunBatch
 240 $(if $?,$(call RunTests))
 241 endef
 242 define SummaryInfo
 243 $(ECHO) "########################################################"
 244 $(CAT) $(?:%=$(ABS_TEST_OUTPUT_DIR)/%/$(STATS_TXT_NAME))
 245 $(ECHO) "########################################################"
 246 endef
 247 
 248 # ------------------------------------------------------------------
 249 
 250 # Batches of tests (somewhat arbitrary assigments to jdk_* targets)
 251 # NOTE: These *do not* run the same tests as make/jprt.properties
 252 JDK_DEFAULT_TARGETS =
 253 JDK_ALL_TARGETS =
 254 
 255 JDK_ALL_TARGETS += jdk_awt
 256 jdk_awt: $(call TestDirs, com/sun/awt java/awt sun/awt \
 257          javax/imageio javax/print sun/pisces)
 258         $(call RunBatch)
 259 
 260 JDK_ALL_TARGETS += jdk_beans1
 261 JDK_DEFAULT_TARGETS += jdk_beans1
 262 jdk_beans1: $(call TestDirs, \
 263             java/beans/beancontext java/beans/PropertyChangeSupport \
 264             java/beans/Introspector java/beans/Performance \
 265             java/beans/VetoableChangeSupport java/beans/Statement)
 266         $(call RunBatch)
 267 
 268 JDK_ALL_TARGETS += jdk_beans2
 269 jdk_beans2: $(call TestDirs, \
 270             java/beans/Beans java/beans/EventHandler java/beans/XMLDecoder \
 271             java/beans/PropertyEditor)
 272         $(call RunBatch)
 273 
 274 JDK_ALL_TARGETS += jdk_beans3
 275 jdk_beans3: $(call TestDirs, java/beans/XMLEncoder)
 276         $(call RunBatch)
 277 
 278 # All beans tests
 279 jdk_beans: jdk_beans1 jdk_beans2 jdk_beans3
 280         @$(SummaryInfo)
 281 
 282 JDK_ALL_TARGETS += jdk_lang
 283 JDK_DEFAULT_TARGETS += jdk_lang
 284 jdk_lang: $(call TestDirs, java/lang sun/invoke sun/misc sun/reflect vm)
 285         $(call RunBatch)
 286 
 287 JDK_ALL_TARGETS += jdk_io
 288 JDK_DEFAULT_TARGETS += jdk_io
 289 jdk_io: $(call TestDirs, java/io)
 290         $(call RunBatch)
 291 
 292 JDK_ALL_TARGETS += jdk_jdi
 293 jdk_jdi: $(call TestDirs, com/sun/jdi)
 294         $(call RunBatch)
 295 
 296 jdk_jfr: $(call TestDirs, com/oracle/jfr)
 297         $(call RunBatch)
 298 
 299 JDK_ALL_TARGETS += jdk_jmx
 300 jdk_jmx: $(call TestDirs, javax/management com/sun/jmx)
 301         $(call RunBatch)
 302 
 303 JDK_ALL_TARGETS += jdk_management
 304 jdk_management: $(call TestDirs, com/sun/management sun/management)
 305         $(call RunBatch)
 306 
 307 JDK_ALL_TARGETS += jdk_math
 308 JDK_DEFAULT_TARGETS += jdk_math
 309 jdk_math: $(call TestDirs, java/math)
 310         $(call RunBatch)
 311 
 312 JDK_DEFAULT_TARGETS += jdk_time
 313 jdk_time: $(call TestDirs, java/time)
 314         $(call RunBatch)
 315 
 316 JDK_ALL_TARGETS += jdk_other


 324           javax/xml/jaxp \
 325           javax/xml/soap \
 326           javax/xml/ws com/sun/internal/ws com/sun/org/glassfish \
 327           jdk/asm \
 328           jdk/lambda \
 329           com/sun/org/apache/xerces \
 330           com/sun/corba \
 331           com/sun/tracing \
 332           sun/usagetracker)
 333         $(call RunBatch)
 334 
 335 JDK_ALL_TARGETS += jdk_net
 336 JDK_DEFAULT_TARGETS += jdk_net
 337 jdk_net: $(call TestDirs, com/sun/net java/net sun/net com/oracle/net)
 338         $(call RunBatch)
 339 
 340 jdk_nio: $(call TestDirs, java/nio sun/nio com/oracle/nio)
 341         $(call SharedLibraryPermissions,java/nio/channels)
 342         $(call RunBatch)
 343 



 344 JDK_ALL_TARGETS += jdk_rmi
 345 jdk_rmi: $(call TestDirs, java/rmi sun/rmi javax/rmi/ssl)
 346         $(call RunBatch)
 347 
 348 jdk_sctp: $(call TestDirs, com/sun/nio/sctp)
 349         $(call RunBatch)
 350 
 351 JDK_ALL_TARGETS += jdk_security1
 352 JDK_DEFAULT_TARGETS += jdk_security1
 353 jdk_security1: $(call TestDirs, java/security)
 354         $(call RunBatch)
 355 
 356 JDK_ALL_TARGETS += jdk_security2
 357 jdk_security2: $(call TestDirs, javax/crypto javax/xml/crypto com/sun/crypto)
 358         $(call RunBatch)
 359 
 360 JDK_ALL_TARGETS += jdk_security3
 361 jdk_security3: $(call TestDirs, com/sun/security lib/security javax/security \
 362         sun/security com/sun/org/apache/xml/internal/security \
 363         com/oracle/security)
 364         $(call SharedLibraryPermissions,sun/security)
 365         $(call RunBatch)
 366 
 367 # All security tests
 368 jdk_security: jdk_security1 jdk_security2 jdk_security3
 369         @$(SummaryInfo)
 370 
 371 JDK_ALL_TARGETS += jdk_sound
 372 jdk_sound: $(call TestDirs, javax/sound)
 373         $(call RunBatch)
 374 
 375 JDK_ALL_TARGETS += jdk_swing
 376 jdk_swing: $(call TestDirs, javax/swing sun/java2d \
 377            demo/jfc com/sun/java/swing)
 378         $(call RunBatch)
 379 
 380 JDK_ALL_TARGETS += jdk_text
 381 JDK_DEFAULT_TARGETS += jdk_text
 382 jdk_text: $(call TestDirs, java/text sun/text)
 383         $(call RunBatch)
 384 




 385 JDK_ALL_TARGETS += jdk_tools
 386 jdk_tools: $(call TestDirs, com/sun/tools sun/jvmstat sun/tools tools)
 387         $(call SharedLibraryPermissions,tools/launcher)
 388         $(call RunBatch)
 389 








 390 JDK_ALL_TARGETS += jdk_util
 391 JDK_DEFAULT_TARGETS += jdk_util
 392 jdk_util: $(call TestDirs, java/util sun/util)
 393         $(call RunBatch)
 394 
 395 # ------------------------------------------------------------------
 396 
 397 # Run default tests
 398 # note that this *does not* have the same meaning as jprt.properties :: jprt.make.rule.default.test.targets
 399 jdk_default: $(JDK_DEFAULT_TARGETS)
 400         @$(SummaryInfo)
 401 
 402 # Run core tests
 403 # please keep this in sync with jdk/make/jprt.properties :: jprt.make.rule.core.test.targets
 404 jdk_core: jdk_lang jdk_math jdk_util jdk_io jdk_net jdk_nio \
 405         jdk_security1 jdk_security2 jdk_security3 jdk_rmi \
 406         jdk_management jdk_jmx jdk_text jdk_tools jdk_jfr jdk_other
 407         @$(SummaryInfo)
 408 
 409 # Run all tests


 440 JTREG_TIMEOUT_OPTION =  -timeoutFactor:4
 441 JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
 442 # Set the max memory for jtreg control vm
 443 JTREG_MEMORY_OPTION = -J-Xmx512m
 444 JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
 445 # Add any extra options
 446 JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
 447 # Set other vm and test options
 448 JTREG_TEST_OPTIONS = $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
 449 # Set the GC options for test vms
 450 #JTREG_GC_OPTION = -vmoption:-XX:+UseSerialGC
 451 #JTREG_TEST_OPTIONS += $(JTREG_GC_OPTION)
 452 # Set the max memory for jtreg target test vms
 453 JTREG_TESTVM_MEMORY_OPTION = -vmoption:-Xmx512m
 454 JTREG_TEST_OPTIONS += $(JTREG_TESTVM_MEMORY_OPTION)
 455 
 456 # Make sure jtreg exists
 457 $(JTREG): $(JT_HOME)
 458 
 459 # Run jtreg
 460 jtreg_tests: prep $(PRODUCT_HOME) $(JTREG)



 461         (                                                                    \
 462           ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)");                   \
 463             export JT_HOME;                                                  \
 464             $(shell $(GETMIXEDPATH) "$(JTREG)")                              \
 465               $(JTREG_BASIC_OPTIONS)                                         \
 466               -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport")  \
 467               -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTwork")    \
 468               -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)")                \
 469               $(JTREG_EXCLUSIONS)                                            \
 470               $(JTREG_TEST_OPTIONS)                                          \
 471               $(TESTDIRS)                                                    \
 472           ) ;                                                                \
 473           $(BUNDLE_UP_AND_EXIT)                                              \
 474         ) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
 475 
 476 # Rule that may change execute permissions on shared library files.
 477 #  Files in repositories should never have execute permissions, but there
 478 #  are some tests that have pre-built shared libraries, and these windows
 479 #  dll files must have execute permission. Adding execute permission
 480 #  may happen automatically on windows when using certain versions of mercurial
 481 #  but it cannot be guaranteed. And blindly adding execute permission might
 482 #  be seen as a mercurial 'change', so we avoid adding execute permission to
 483 #  repository files. But testing from a plain source tree needs the chmod a+rx.
 484 #  Used on select directories and applying the chmod to all shared libraries
 485 #  not just dll files. On windows, this may not work with MKS if the files
 486 #  were installed with CYGWIN unzip or untar (MKS chmod may not do anything).
 487 #  And with CYGWIN and sshd service, you may need CYGWIN=ntsec for this to work.
 488 #
 489 shared_library_permissions: $(SHARED_LIBRARY_DIR)
 490         if [ ! -d $(TEST_ROOT)/../.hg ] ; then                          \
 491           $(FIND) $< \( -name \*.dll -o -name \*.DLL -o -name \*.so \)  \
 492                 -exec $(CHMOD) a+rx {} \; ;                             \
 493         fi