test/TestCommon.gmk
author chegar
Fri, 08 Feb 2019 12:23:16 +0000
changeset 53700 4ce47bc1fb92
parent 52030 57862a02bf4b
permissions -rw-r--r--
8218662: Allow 204 responses with Content-Length:0 Reviewed-by: michaelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     1
#
48980
ab7784555b4c 8197906: Enable CDS mode execution of jtreg tests via make
mseledtsov
parents: 48693
diff changeset
     2
# Copyright (c) 1995, 2018, Oracle and/or its affiliates. All rights reserved.
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     4
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    10
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    15
# accompanied this code).
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    16
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    20
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    23
# questions.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    24
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    25
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    26
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    27
# Common logic to run various tests for a component, to be included by the
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    28
# component specific test makefiles.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    29
#
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    30
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    31
# Default values for some properties that can be overridden by components.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    32
USE_JTREG_VERSION ?= 4.2
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    33
JTREG_VM_TYPE ?= -agentvm
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    34
USE_JTREG_ASSERT ?= true
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    35
LIMIT_JTREG_VM_MEMORY ?= true
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    36
49147
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    37
X:=
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    38
SPACE:=$(X) $(X)
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    39
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    40
.DEFAULT : all
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    41
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    42
# Empty these to get rid of some default rules
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    43
.SUFFIXES:
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    44
.SUFFIXES: .java
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    45
CO=
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    46
GET=
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    47
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    48
# Utilities used
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    49
AWK       = awk
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    50
CAT       = cat
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    51
CD        = cd
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    52
CHMOD     = chmod
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    53
CP        = cp
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    54
CUT       = cut
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    55
DIRNAME   = dirname
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    56
ECHO      = echo
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    57
EGREP     = egrep
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    58
EXPAND    = expand
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    59
FIND      = find
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    60
MKDIR     = mkdir
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    61
PWD       = pwd
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    62
RM        = rm -f
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    63
SED       = sed
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    64
SORT      = sort
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    65
TEE       = tee
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    66
UNAME     = uname
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    67
UNIQ      = uniq
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    68
WC        = wc
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    69
ZIPEXE    = zip
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    70
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    71
# Get OS name from uname (Cygwin inexplicably adds _NT-5.1)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    72
UNAME_S := $(shell $(UNAME) -s | $(CUT) -f1 -d_)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    73
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    74
# Commands to run on paths to make mixed paths for java on windows
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    75
ifeq ($(findstring CYGWIN,$(UNAME_S)), CYGWIN)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    76
  # Location of developer shared files
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    77
  SLASH_JAVA = J:
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    78
  GETMIXEDPATH = cygpath -m
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    79
  PLATFORM = windows
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    80
else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    81
  # Location of developer shared files
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    82
  SLASH_JAVA = /java
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    83
  GETMIXEDPATH = $(ECHO)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    84
  PLATFORM = unix # we only care about windows or bsd.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    85
  ifeq ($(UNAME_S), Darwin)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    86
    PLATFORM = bsd
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    87
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    88
  ifeq ($(findstring BSD,$(UNAME_S)), BSD)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    89
    PLATFORM = bsd
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    90
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    91
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    92
49147
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    93
# convert list of directories to dos paths
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    94
define MixedDirs
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    95
$(foreach i,$1,$(shell $(GETMIXEDPATH) "${i}"))
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    96
endef
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
    97
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    98
ifdef ALT_SLASH_JAVA
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
    99
  SLASH_JAVA = $(ALT_SLASH_JAVA)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   100
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   101
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   102
# Root of this test area (important to use full paths in some places)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   103
TEST_ROOT := $(shell $(PWD))
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   104
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   105
# Root of all test results
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   106
ifdef TEST_OUTPUT_DIR
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   107
  $(shell $(MKDIR) -p $(TEST_OUTPUT_DIR)/jtreg)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   108
  ABS_TEST_OUTPUT_DIR := \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   109
    $(shell $(CD) $(TEST_OUTPUT_DIR)/jtreg && $(PWD))
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   110
else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   111
  ifdef ALT_OUTPUTDIR
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   112
    ABS_OUTPUTDIR = $(shell $(CD) $(ALT_OUTPUTDIR) && $(PWD))
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   113
  else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   114
    ABS_OUTPUTDIR = $(shell $(CD) $(TEST_ROOT)/.. && $(PWD))
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   115
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   116
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   117
  ABS_PLATFORM_BUILD_ROOT = $(ABS_OUTPUTDIR)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   118
  ABS_TEST_OUTPUT_DIR := $(ABS_PLATFORM_BUILD_ROOT)/testoutput/$(UNIQUE_DIR)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   119
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   120
51994
7577686cc9bd 8211350: Remove jprt support
mikael
parents: 51856
diff changeset
   121
# If unset, set up the PRODUCT_HOME variable to the jdk to test
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   122
ifndef PRODUCT_HOME
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   123
  # Try to use images/jdk if it exists
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   124
  ABS_JDK_IMAGE = $(ABS_PLATFORM_BUILD_ROOT)/images/jdk
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   125
  PRODUCT_HOME :=                               \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   126
    $(shell                                     \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   127
      if [ -d $(ABS_JDK_IMAGE) ] ; then         \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   128
         $(ECHO) "$(ABS_JDK_IMAGE)";            \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   129
       else                                     \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   130
         $(ECHO) "$(ABS_PLATFORM_BUILD_ROOT)";  \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   131
       fi)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   132
  PRODUCT_HOME := $(PRODUCT_HOME)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   133
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   134
49147
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   135
# On Windows, setup the _NT_SYMBOL_PATH if possible.
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   136
ifeq ($(PLATFORM), windows)
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   137
  ifndef _NT_SYMBOL_PATH
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   138
    ifdef PRODUCT_SYMBOLS_HOME
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   139
      _NT_SYMBOL_PATH := \
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   140
          $(subst $(SPACE),;,$(strip $(call MixedDirs, $(sort $(dir $(wildcard \
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   141
          $(addprefix $(PRODUCT_SYMBOLS_HOME)/bin/, *.pdb */*.pdb)))))))
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   142
      export _NT_SYMBOL_PATH
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   143
    endif
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   144
  endif
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   145
  JTREG_BASIC_OPTIONS += -e:_NT_SYMBOL_PATH='$(_NT_SYMBOL_PATH)'
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   146
endif
af37d9997bd6 8199197: Set _NT_SYMBOL_PATH when running tests on windows
erikj
parents: 48980
diff changeset
   147
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   148
ifneq ($(NATIVE_TEST_PATH), )
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   149
  # jtreg -nativepath <dir>
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   150
  #
51994
7577686cc9bd 8211350: Remove jprt support
mikael
parents: 51856
diff changeset
   151
  # Local make tests will be TEST_IMAGE_DIR
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   152
  ifdef TEST_IMAGE_DIR
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   153
    TESTNATIVE_DIR = $(TEST_IMAGE_DIR)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   154
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   155
  ifdef TESTNATIVE_DIR
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   156
    JTREG_NATIVE_PATH = -nativepath:$(shell $(GETMIXEDPATH) "$(TESTNATIVE_DIR)/$(NATIVE_TEST_PATH)")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   157
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   158
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   159
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   160
ifeq ($(USE_FAILURE_HANDLER), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   161
  # jtreg failure handler config
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   162
  ifeq ($(FAILURE_HANDLER_DIR), )
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   163
    ifneq ($(TESTNATIVE_DIR), )
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   164
      FAILURE_HANDLER_DIR := $(TESTNATIVE_DIR)/failure_handler
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   165
    endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   166
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   167
  ifneq ($(FAILURE_HANDLER_DIR), )
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   168
    FAILURE_HANDLER_DIR_MIXED := $(shell $(GETMIXEDPATH) "$(FAILURE_HANDLER_DIR)")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   169
    JTREG_FAILURE_HANDLER_OPTIONS := \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   170
        -timeoutHandlerDir:$(FAILURE_HANDLER_DIR_MIXED)/jtregFailureHandler.jar \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   171
        -observerDir:$(FAILURE_HANDLER_DIR_MIXED)/jtregFailureHandler.jar \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   172
        -timeoutHandler:jdk.test.failurehandler.jtreg.GatherProcessInfoTimeoutHandler \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   173
        -observer:jdk.test.failurehandler.jtreg.GatherDiagnosticInfoObserver \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   174
        -timeoutHandlerTimeout:0
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   175
  ifeq ($(PLATFORM), windows)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   176
      JTREG_FAILURE_HANDLER_OPTIONS += -J-Djava.library.path="$(FAILURE_HANDLER_DIR_MIXED)"
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   177
    endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   178
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   179
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   180
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   181
# How to create the test bundle (pass or fail, we want to create this)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   182
#   Follow command with ";$(BUNDLE_UP_AND_EXIT)", so it always gets executed.
47434
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   183
ifneq ($(ARCHIVE_BUNDLE), )
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   184
  ZIP_UP_RESULTS = ( $(MKDIR) -p `$(DIRNAME) $(ARCHIVE_BUNDLE)`     \
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   185
	           && $(CD) $(ABS_TEST_OUTPUT_DIR)             \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   186
	           && $(CHMOD) -R a+r . \
47434
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   187
	           && $(ZIPEXE) -q -r $(ARCHIVE_BUNDLE) . ) ;
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   188
  CLEAN_ARCHIVE_BUNDLE = @$(RM) $(ARCHIVE_BUNDLE)
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   189
endif
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   190
47479
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   191
# AddressSanitizer
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   192
ifeq ($(ASAN_ENABLED), yes)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   193
  export ASAN_OPTIONS="handle_segv=0 detect_leaks=0"
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   194
  JTREG_BASIC_OPTIONS += -e:ASAN_OPTIONS=$(ASAN_OPTIONS)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   195
  ifneq ($(DEVKIT_LIB_DIR),)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   196
    export LD_LIBRARY_PATH:=$(LD_LIBRARY_PATH):$(DEVKIT_LIB_DIR)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   197
    JTREG_BASIC_OPTIONS += -e:LD_LIBRARY_PATH=$(LD_LIBRARY_PATH)
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   198
  endif
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   199
endif
77a5f2ef1807 8189800: Add support for AddressSanitizer
asmotrak
parents: 47434
diff changeset
   200
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   201
# important results files
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   202
SUMMARY_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport/text/summary.txt")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   203
STATS_TXT_NAME = Stats.txt
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   204
STATS_TXT = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/$(STATS_TXT_NAME)")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   205
RUNLIST   = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/runlist.txt")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   206
PASSLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/passlist.txt")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   207
FAILLIST  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/faillist.txt")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   208
EXITCODE  = $(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/exitcode.txt")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   209
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   210
TESTEXIT = \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   211
  if [ ! -s $(EXITCODE) ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   212
    $(ECHO) "ERROR: EXITCODE file not filled in."; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   213
    $(ECHO) "1" > $(EXITCODE); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   214
  fi ; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   215
  testExitCode=`$(CAT) $(EXITCODE)`; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   216
  $(ECHO) "EXIT CODE: $${testExitCode}"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   217
  exit $${testExitCode}
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   218
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   219
ifeq ($(TREAT_EXIT_CODE_1_AS_0), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   220
  ADJUST_EXIT_CODE := \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   221
  if [ $${jtregExitCode} = 1 ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   222
    jtregExitCode=0; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   223
  fi
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   224
else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   225
  # colon is the shell no-op
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   226
  ADJUST_EXIT_CODE := :
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   227
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   228
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   229
BUNDLE_UP_AND_EXIT = \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   230
( \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   231
  jtregExitCode=$$? && \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   232
  _summary="$(SUMMARY_TXT)"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   233
  $(ADJUST_EXIT_CODE) ; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   234
  $(RM) -f $(STATS_TXT) $(RUNLIST) $(PASSLIST) $(FAILLIST) $(EXITCODE); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   235
  $(ECHO) "$${jtregExitCode}" > $(EXITCODE); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   236
  if [ -r "$${_summary}" ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   237
    $(ECHO) "Summary: $(UNIQUE_DIR)" > $(STATS_TXT); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   238
    $(EXPAND) $${_summary} | $(EGREP) -v ' Not run\.' > $(RUNLIST); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   239
    $(EGREP) ' Passed\.' $(RUNLIST) \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   240
      | $(EGREP) -v ' Error\.' \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   241
      | $(EGREP) -v ' Failed\.' > $(PASSLIST); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   242
    ( $(EGREP) ' Failed\.' $(RUNLIST); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   243
      $(EGREP) ' Error\.' $(RUNLIST); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   244
      $(EGREP) -v ' Passed\.' $(RUNLIST) ) \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   245
      | $(SORT) | $(UNIQ) > $(FAILLIST); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   246
    if [ $${jtregExitCode} != 0 -o -s $(FAILLIST) ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   247
      $(EXPAND) $(FAILLIST) \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   248
        | $(CUT) -d' ' -f1 \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   249
        | $(SED) -e 's@^@FAILED: @' >> $(STATS_TXT); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   250
      if [ $${jtregExitCode} = 0 ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   251
        jtregExitCode=1; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   252
      fi; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   253
    fi; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   254
    runc="`$(CAT) $(RUNLIST)      | $(WC) -l | $(AWK) '{print $$1;}'`"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   255
    passc="`$(CAT) $(PASSLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   256
    failc="`$(CAT) $(FAILLIST)    | $(WC) -l | $(AWK) '{print $$1;}'`"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   257
    exclc="FIXME CODETOOLS-7900176"; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   258
    $(ECHO) "TEST STATS: name=$(UNIQUE_DIR)  run=$${runc}  pass=$${passc}  fail=$${failc}" \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   259
      >> $(STATS_TXT); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   260
  else \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   261
    $(ECHO) "Missing file: $${_summary}" >> $(STATS_TXT); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   262
  fi; \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   263
  if [ -f $(STATS_TXT) ] ; then \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   264
    $(CAT) $(STATS_TXT); \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   265
  fi; \
47434
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   266
  $(ZIP_UP_RESULTS) \
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   267
  $(TESTEXIT) \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   268
)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   269
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   270
################################################################
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   271
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   272
# Prep for output
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   273
# Change execute permissions on shared library files.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   274
# Files in repositories should never have execute permissions, but
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   275
# there are some tests that have pre-built shared libraries, and these
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   276
# windows dll files must have execute permission. Adding execute
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   277
# permission may happen automatically on windows when using certain
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   278
# versions of mercurial but it cannot be guaranteed. And blindly
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   279
# adding execute permission might be seen as a mercurial 'change', so
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   280
# we avoid adding execute permission to repository files. But testing
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   281
# from a plain source tree needs the chmod a+rx. Applying the chmod to
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   282
# all shared libraries not just dll files. And with CYGWIN and sshd
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   283
# service, you may need CYGWIN=ntsec for this to work.
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   284
prep:
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   285
	@$(MKDIR) -p $(ABS_TEST_OUTPUT_DIR)
47285
7513299d1cd0 8188090: Running tests from make causes spurious mercurial changes
mcimadamore
parents: 47218
diff changeset
   286
	@if [ ! -d $(TEST_ROOT)/../../.hg ] && [ ! -d $(TEST_ROOT)/../../../.hg ]; then  \
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   287
	  $(FIND) $(TEST_ROOT) \( -name \*.dll -o -name \*.DLL -o -name \*.so \)  \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   288
	        -exec $(CHMOD) a+rx {} \; ;                                       \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   289
	fi
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   290
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   291
ifeq ($(CLEAN_BEFORE_PREP), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   292
prep: clean
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   293
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   294
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   295
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   296
# Cleanup
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   297
clean:
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   298
	@$(RM) -r $(ABS_TEST_OUTPUT_DIR)
47434
7be5c153e8a4 8189664: Stop producing ARCHIVE_BUNDLE.zip from test makefiles unless asked to
erikj
parents: 47329
diff changeset
   299
	$(CLEAN_ARCHIVE_BUNDLE)
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   300
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   301
################################################################
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   302
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   303
# jtreg tests
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   304
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   305
# Expect JT_HOME to be set for jtreg tests. (home for jtreg)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   306
ifndef JT_HOME
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   307
  JT_HOME = $(SLASH_JAVA)/re/jtreg/$(USE_JTREG_VERSION)/promoted/latest/binaries/jtreg
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   308
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   309
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   310
# Problematic tests to be excluded
49179
4b273ed9a82d 8197453: Add support of extra problem list
epavlova
parents: 48980
diff changeset
   311
EXTRA_PROBLEM_LISTS :=
4b273ed9a82d 8197453: Add support of extra problem list
epavlova
parents: 48980
diff changeset
   312
PROBLEM_LISTS := ProblemList.txt $(EXTRA_PROBLEM_LISTS)
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   313
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   314
# Create exclude list for this platform and arch
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   315
ifdef NO_EXCLUDES
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   316
  JTREG_EXCLUSIONS =
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   317
else
49179
4b273ed9a82d 8197453: Add support of extra problem list
epavlova
parents: 48980
diff changeset
   318
  JTREG_EXCLUSIONS = $(addprefix -exclude:, $(wildcard $(PROBLEM_LISTS)))
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   319
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   320
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   321
# ------------------------------------------------------------------
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   322
51994
7577686cc9bd 8211350: Remove jprt support
mikael
parents: 51856
diff changeset
   323
# The TESTDIRS variable can be used to select the jtreg tests to run
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   324
ifdef TESTDIRS
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   325
  TEST_SELECTION = $(TESTDIRS)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   326
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   327
48677
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   328
ifeq ($(UNAME_S), SunOS)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   329
  NUM_CORES := $(shell LC_MESSAGES=C /usr/sbin/psrinfo -v | grep -c on-line)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   330
endif
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   331
ifeq ($(UNAME_S), Linux)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   332
  NUM_CORES := $(shell cat /proc/cpuinfo  | grep -c processor)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   333
endif
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   334
ifeq ($(UNAME_S), Darwin)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   335
  NUM_CORES := $(shell /usr/sbin/sysctl -n hw.ncpu)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   336
endif
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   337
ifeq ($(findstring CYGWIN,$(UNAME_S)), CYGWIN)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   338
  ifneq ($(NUMBER_OF_PROCESSORS), )
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   339
    NUM_CORES := $(NUMBER_OF_PROCESSORS)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   340
  else
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   341
    ifneq ($(HOTSPOT_BUILD_JOBS), )
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   342
      NUM_CORES := $(HOTSPOT_BUILD_JOBS)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   343
    else
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   344
      NUM_CORES := 1 # fallback
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   345
    endif
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   346
  endif
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   347
endif
48677
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   348
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   349
ifndef CONCURRENCY_FACTOR
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   350
  CONCURRENCY_FACTOR = 1
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   351
endif
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   352
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   353
# Concurrency based on min(cores / 2, 12) * CONCURRENCY_FACTOR
48693
a2d550f08617 8196524: Align MaxRAMPercentage settings between open and closed
erikj
parents: 48677
diff changeset
   354
CONCURRENCY := $(shell $(AWK) \
48677
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   355
  'BEGIN { \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   356
    c = $(NUM_CORES) / 2; \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   357
    if (c > 12) c = 12; \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   358
    c = c * $(CONCURRENCY_FACTOR); \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   359
    if (c < 1) c = 1; \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   360
    printf "%.0f", c; \
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   361
  }')
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   362
JTREG_BASIC_OPTIONS += -concurrency:$(CONCURRENCY)
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   363
48693
a2d550f08617 8196524: Align MaxRAMPercentage settings between open and closed
erikj
parents: 48677
diff changeset
   364
# Make sure MaxRAMPercentage is low enough to not cause OOM or swapping since
a2d550f08617 8196524: Align MaxRAMPercentage settings between open and closed
erikj
parents: 48677
diff changeset
   365
# we may end up with a lot of JVM's
a2d550f08617 8196524: Align MaxRAMPercentage settings between open and closed
erikj
parents: 48677
diff changeset
   366
MAX_RAM_PERCENTAGE := $(shell expr 25 / $(CONCURRENCY))
a2d550f08617 8196524: Align MaxRAMPercentage settings between open and closed
erikj
parents: 48677
diff changeset
   367
JTREG_BASIC_OPTIONS += -vmoption:-XX:MaxRAMPercentage=$(MAX_RAM_PERCENTAGE)
48677
62b6e9b1dfdc 8196197: Enable the make system to calculate concurrency for JDK tests
ctornqvi
parents: 47479
diff changeset
   368
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   369
ifdef EXTRA_JTREG_OPTIONS
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   370
  JTREG_BASIC_OPTIONS += $(EXTRA_JTREG_OPTIONS)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   371
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   372
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   373
# Default JTREG to run
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   374
JTREG = $(JT_HOME)/bin/jtreg
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   375
# run in agentvm/othervm mode
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   376
JTREG_BASIC_OPTIONS += $(JTREG_VM_TYPE)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   377
# Only run automatic tests
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   378
JTREG_BASIC_OPTIONS += -a
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   379
# Always turn on assertions
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   380
ifeq ($(USE_JTREG_ASSERT), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   381
  JTREG_ASSERT_OPTION = -ea -esa
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   382
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   383
JTREG_BASIC_OPTIONS += $(JTREG_ASSERT_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   384
# jtreg verbosity setting
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   385
# Default is to report details on all failed or error tests, times too
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   386
JTREG_VERBOSE ?= fail,error,time
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   387
JTREG_BASIC_OPTIONS += $(if $(JTREG_VERBOSE),-v:$(JTREG_VERBOSE))
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   388
# Retain all files for failing tests
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   389
JTREG_BASIC_OPTIONS += -retain:fail,error
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   390
# Ignore tests are not run and completely silent about it
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   391
JTREG_IGNORE_OPTION = -ignore:quiet
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   392
JTREG_BASIC_OPTIONS += $(JTREG_IGNORE_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   393
# Multiply by 4 the timeout factor
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   394
JTREG_TIMEOUT_OPTION =  -timeoutFactor:4
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   395
JTREG_BASIC_OPTIONS += $(JTREG_TIMEOUT_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   396
ifeq ($(LIMIT_JTREG_VM_MEMORY), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   397
  # Set the max memory for jtreg control vm
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   398
  JTREG_MEMORY_OPTION = -J-Xmx512m
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   399
  JTREG_BASIC_OPTIONS += $(JTREG_MEMORY_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   400
  # Set the max memory for jtreg target test vms
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   401
  JTREG_TESTVM_MEMORY_OPTION = -vmoption:-Xmx512m
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   402
  JTREG_TEST_OPTIONS += $(JTREG_TESTVM_MEMORY_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   403
endif
47329
43b33ee91ea0 8189115: Pass JIB_DATA_DIR to jtreg harness
ctornqvi
parents: 47285
diff changeset
   404
# Make it possible to specify the JIB_DATA_DIR for tests using the
43b33ee91ea0 8189115: Pass JIB_DATA_DIR to jtreg harness
ctornqvi
parents: 47285
diff changeset
   405
# JIB Artifact resolver
43b33ee91ea0 8189115: Pass JIB_DATA_DIR to jtreg harness
ctornqvi
parents: 47285
diff changeset
   406
JTREG_BASIC_OPTIONS += -e:JIB_DATA_DIR
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   407
# Give tests access to JT_JAVA, see JDK-8141609
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   408
JTREG_BASIC_OPTIONS += -e:JDK8_HOME=${JT_JAVA}
46192
14c55d15c9d7 8174203: Enable AOT Jtreg tests on Windows x86_64
bobv
parents: 42424
diff changeset
   409
# Give aot tests access to Visual Studio installation
14c55d15c9d7 8174203: Enable AOT Jtreg tests on Windows x86_64
bobv
parents: 42424
diff changeset
   410
ifneq ($(VS120COMNTOOLS), )
49552
05883543ee2a 8201263: Trailing backslash in VS120COMNTOOLS leads to ugly error message when running tests
mikael
parents: 49194
diff changeset
   411
  JTREG_BASIC_OPTIONS += -e:VS120COMNTOOLS="$(shell $(GETMIXEDPATH) "$(patsubst %\,%,$(VS120COMNTOOLS))")"
46192
14c55d15c9d7 8174203: Enable AOT Jtreg tests on Windows x86_64
bobv
parents: 42424
diff changeset
   412
endif
50908
7c51db95ccb6 8205207: Port Graal unit tests under jtreg
epavlova
parents: 49552
diff changeset
   413
7c51db95ccb6 8205207: Port Graal unit tests under jtreg
epavlova
parents: 49552
diff changeset
   414
JTREG_BASIC_OPTIONS += -e:TEST_IMAGE_GRAAL_DIR=${TEST_IMAGE_DIR}/hotspot/jtreg/graal
7c51db95ccb6 8205207: Port Graal unit tests under jtreg
epavlova
parents: 49552
diff changeset
   415
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   416
# Set other vm and test options
46248
5a6c03b61979 8184772: Make it possible to pass arguments only to the Java running the tests when running jtreg through make
ctornqvi
parents: 46196
diff changeset
   417
JTREG_TEST_OPTIONS += $(JAVA_ARGS:%=-javaoptions:%) $(JAVA_VM_ARGS:%=-vmoption:%)
51856
11b9d3a6f31c 8211037: Load jib jars dynamically from JibArtifactManager
erikj
parents: 50908
diff changeset
   418
ifneq ($(JIB_HOME), )
11b9d3a6f31c 8211037: Load jib jars dynamically from JibArtifactManager
erikj
parents: 50908
diff changeset
   419
  JTREG_BASIC_OPTIONS += -e:JIB_HOME=$(shell $(GETMIXEDPATH) "$(JIB_HOME)")
46196
822ca950ddaa 8175300: Enable artifact resolution for jtreg tests
ctornqvi
parents: 46193
diff changeset
   420
endif
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   421
ifeq ($(IGNORE_MARKED_TESTS), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   422
  # Option to tell jtreg to not run tests marked with "ignore"
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   423
  ifeq ($(PLATFORM), windows)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   424
    JTREG_KEY_OPTION = -k:!ignore
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   425
  else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   426
    JTREG_KEY_OPTION = -k:\!ignore
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   427
  endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   428
  JTREG_BASIC_OPTIONS += $(JTREG_KEY_OPTION)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   429
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   430
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   431
# Make sure jtreg exists
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   432
ifeq ($(USE_WINDOWS_EXISTENCE_CHECK), true)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   433
  jtreg_exists:
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   434
	test -d $(shell $(GETMIXEDPATH) "$(JT_HOME)")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   435
	test -f $(shell $(GETMIXEDPATH) "$(JTREG)")
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   436
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   437
else
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   438
  jtreg_exists: $(JT_HOME)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   439
endif
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   440
PHONY_LIST += jtreg_exists
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   441
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   442
# Run jtreg
48980
ab7784555b4c 8197906: Enable CDS mode execution of jtreg tests via make
mseledtsov
parents: 48693
diff changeset
   443
jtreg_tests: prep jtreg_exists $(PRODUCT_HOME) $(TEST_PREREQS)
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   444
	(                                                                    \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   445
	  ( JT_HOME=$(shell $(GETMIXEDPATH) "$(JT_HOME)");                   \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   446
	    export JT_HOME;                                                  \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   447
	    $(shell $(GETMIXEDPATH) "$(JTREG)")                              \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   448
	      $(JTREG_BASIC_OPTIONS)                                         \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   449
	      -r:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTreport")  \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   450
	      -w:$(shell $(GETMIXEDPATH) "$(ABS_TEST_OUTPUT_DIR)/JTwork")    \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   451
	      -jdk:$(shell $(GETMIXEDPATH) "$(PRODUCT_HOME)")                \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   452
	      $(JTREG_NATIVE_PATH)                                           \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   453
	      $(JTREG_FAILURE_HANDLER_OPTIONS)                               \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   454
	      $(JTREG_EXCLUSIONS)                                            \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   455
	      $(JTREG_TEST_OPTIONS)                                          \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   456
	      $(TEST_SELECTION)                                              \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   457
	  ) ;                                                                \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   458
	  $(BUNDLE_UP_AND_EXIT)                                              \
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   459
	) 2>&1 | $(TEE) $(ABS_TEST_OUTPUT_DIR)/output.txt ; $(TESTEXIT)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   460
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   461
PHONY_LIST += jtreg_tests
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   462
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 46248
diff changeset
   463
# Make it possible to call this with <component>_jtreg_tests
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 46248
diff changeset
   464
%_jtreg_tests: jtreg_tests
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 46248
diff changeset
   465
	# Must have a fake recipe here to prevent make from matching any other rule
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 46248
diff changeset
   466
42424
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   467
################################################################
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   468
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   469
# Phony targets (e.g. these are not filenames)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   470
.PHONY: all clean prep $(PHONY_LIST)
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   471
2ac2a6ef14a6 8170629: Remove code duplication in test makefiles
ihse
parents:
diff changeset
   472
################################################################