test/Makefile
author erikj
Mon, 18 Sep 2017 18:15:05 -0700
changeset 47221 3b201865d5c1
parent 47218 918745561887
child 47938 a182ac1491d7
child 55893 9991393c7b3a
permissions -rw-r--r--
8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     1
#
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
     2
# Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     4
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 5115
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 5115
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    10
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    15
# accompanied this code).
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    16
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    20
#
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 5115
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 5115
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 5115
diff changeset
    23
# questions.
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    24
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    25
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    26
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    27
# Makefile to run tests from multiple sibling directories
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    28
#
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    29
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    30
# Macro to run a test target in a subdir
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    31
define SUBDIR_TEST # subdirectory target
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    32
if [ -d $1 ] ; then \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    33
  if [ -r $1/Makefile ] ; then \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    34
    $(MAKE) --no-print-directory -k -C $1 $2 ; \
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    35
  else \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    36
    echo "ERROR: File does not exist: $1/Makefile"; \
5115
204e24e427b0 6936788: Minor adjustment to top repo test/Makefile, missing non-zero exit case
ohair
parents: 5112
diff changeset
    37
    exit 1; \
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    38
  fi; \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    39
else \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    40
  echo "WARNING: No testing done, directory does not exist: $1"; \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    41
fi
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    42
endef
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    43
15577
0ed5f9a7f454 8006595: Use jdk/test/Makefile targets in preference to local definitions
mduigou
parents: 15173
diff changeset
    44
# Default test target (core)
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    45
default: jdk_core langtools_jtreg jaxp_all
11242
9e05a04a7f7e 7119829: Adjust default jprt testing configuration
ohair
parents: 8918
diff changeset
    46
9e05a04a7f7e 7119829: Adjust default jprt testing configuration
ohair
parents: 8918
diff changeset
    47
# All testing
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    48
all: jdk_all langtools_all jaxp_all
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    49
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    50
ifeq ($(TEST_JOBS), 0)
43386
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    51
  ifeq ($(shell $(EXPR) $(JOBS) \> 50), 1)
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    52
    # JTReg cannot handle more than 50 in concurrency
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    53
    JDK_TEST_JOBS=50
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    54
  else
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    55
    JDK_TEST_JOBS=$(JOBS)
df350c85390b 8172912: JTReg concurrency value must be limited
ihse
parents: 41648
diff changeset
    56
  endif
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    57
else
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    58
  JDK_TEST_JOBS=$(TEST_JOBS)
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    59
endif
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    60
# Test targets
19520
527f461b65a3 8023491: Remove target names from test/Makefile and defer to sub-repo makefiles.
mduigou
parents: 15577
diff changeset
    61
langtools_% :
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    62
	@$(NO_STOPPING)$(call SUBDIR_TEST, langtools, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    63
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    64
	    JT_JAVA=$(PRODUCT_HOME) JTREG_HOME=$(JT_HOME) \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    65
	    TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@))
15577
0ed5f9a7f454 8006595: Use jdk/test/Makefile targets in preference to local definitions
mduigou
parents: 15173
diff changeset
    66
21760
9f542d8601a8 8028478: Re-visit JPRT testsets to make it easier to run subsets of the tests
alanb
parents: 19522
diff changeset
    67
jdk_% core_%s svc_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    68
	@$(NO_STOPPING)$(call SUBDIR_TEST, jdk, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    69
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    70
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    71
jaxp_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    72
	@$(NO_STOPPING)$(call SUBDIR_TEST, jaxp, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    73
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    74
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    75
nashorn_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    76
	@$(NO_STOPPING)$(call SUBDIR_TEST, nashorn, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    77
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    78
41648
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    79
SUB_MAKE_ARGS :=
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    80
ifneq ($(TEST_JOBS), 0)
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    81
  ifneq ($(TEST_JOBS), )
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    82
    SUB_MAKE_ARGS += CONCURRENCY=$(TEST_JOBS)
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    83
  endif
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    84
endif
24419
b06dcd11db3f 8042804: Support invoking Hotspot tests from top level
mikael
parents: 21760
diff changeset
    85
hotspot_%:
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    86
	@$(NO_STOPPING)$(call SUBDIR_TEST, hotspot/jtreg, $(SUB_MAKE_ARGS) TEST="$@" $@)
24419
b06dcd11db3f 8042804: Support invoking Hotspot tests from top level
mikael
parents: 21760
diff changeset
    87
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    88
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    89
# jtreg_tests
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    90
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    91
# Invocation:
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    92
#
37863
e5e036fff56c 8156658: Common way to run jtreg tests
sla
parents: 35745
diff changeset
    93
# make jtreg_tests TESTDIRS=<test-dirs> TEST_SELECTION=<path to test or jtreg group> TEST_OUTPUT_DIR=<path>
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    94
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    95
# where <test-dirs> is something like '../<component>/test/runtime',
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    96
# <component> in turn being one of the top level directories (for
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    97
# example 'hotspot').
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    98
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    99
# The below will strip the path prefix and delegate to the
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   100
# corresponding ../<component>/test/Makefile.
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   101
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   102
ifneq ($(TESTDIRS),)
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   103
  # Extract the component from ../test/<component>/...
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   104
  TESTDIRS_NORM := $(patsubst test/%, %, $(patsubst ../%, %, $(TESTDIRS)))
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   105
  COMPONENT := $(word 1,$(subst /, ,$(TESTDIRS_NORM)))
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   106
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   107
  # Strip off the ../<component>/test prefix and pass the rest as TESTDIRS
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   108
  # to the delegate Makefile
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   109
  # The hotspot tests are in a subdir "java". Accept paths both including
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   110
  # and excluding this extra subdir
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   111
  TESTDIRS_TESTS := $(patsubst $(COMPONENT)/%,%,$(patsubst hotspot/jtreg/%,%, \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   112
      $(patsubst ../%, %, $(TESTDIRS_NORM))))
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   113
endif
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   114
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   115
jtreg_tests:
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   116
	$(MAKE) --no-print-directory TESTDIRS=$(TESTDIRS_TESTS) \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   117
	    $(COMPONENT)_jtreg_tests
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   118
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   119
################################################################
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   120
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   121
# Phony targets (e.g. these are not filenames)
19520
527f461b65a3 8023491: Remove target names from test/Makefile and defer to sub-repo makefiles.
mduigou
parents: 15577
diff changeset
   122
.PHONY: all clean
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   123
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   124
################################################################