test/Makefile
author ihse
Thu, 30 Nov 2017 00:31:24 +0100
branchihse-testmakefiles-branch
changeset 55921 60356323be38
parent 55915 edbc895d637b
child 55926 61412cf6fc17
permissions -rw-r--r--
Try to not exit with error.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
     1
#
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
     2
# Copyright (c) 2010, 2017, 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
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    30
# Locate this Makefile
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    31
ifeq ($(filter /%, $(lastword $(MAKEFILE_LIST))),)
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    32
  makefile_path := $(CURDIR)/$(strip $(lastword $(MAKEFILE_LIST)))
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    33
else
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    34
  makefile_path := $(lastword $(MAKEFILE_LIST))
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    35
endif
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    36
TOPDIR ?= $(strip $(patsubst %/test/, %, $(dir $(makefile_path))))
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
    37
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    38
# Macro to run a test target in a subdir
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    39
define SUBDIR_TEST # subdirectory target
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    40
if [ -d $1 ] ; then \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    41
  if [ -r $1/Makefile ] ; then \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    42
    $(MAKE) --no-print-directory -k -C $1 $2 ; \
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    43
  else \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    44
    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
    45
    exit 1; \
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    46
  fi; \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    47
else \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    48
  echo "WARNING: No testing done, directory does not exist: $1"; \
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    49
fi
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    50
endef
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    51
15577
0ed5f9a7f454 8006595: Use jdk/test/Makefile targets in preference to local definitions
mduigou
parents: 15173
diff changeset
    52
# Default test target (core)
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    53
default: jdk_core langtools_jtreg jaxp_all
11242
9e05a04a7f7e 7119829: Adjust default jprt testing configuration
ohair
parents: 8918
diff changeset
    54
9e05a04a7f7e 7119829: Adjust default jprt testing configuration
ohair
parents: 8918
diff changeset
    55
# All testing
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    56
all: jdk_all langtools_all jaxp_all
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    57
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    58
ifeq ($(TEST_JOBS), 0)
47938
a182ac1491d7 8189099: JTReg now supports 256 jobs
ihse
parents: 47221
diff changeset
    59
  JDK_TEST_JOBS=$(JOBS)
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    60
else
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    61
  JDK_TEST_JOBS=$(TEST_JOBS)
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    62
endif
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    63
# Test targets
19520
527f461b65a3 8023491: Remove target names from test/Makefile and defer to sub-repo makefiles.
mduigou
parents: 15577
diff changeset
    64
langtools_% :
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    65
	@$(NO_STOPPING)$(call SUBDIR_TEST, langtools, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    66
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) \
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    67
	    JT_JAVA=$(PRODUCT_HOME) JTREG_HOME=$(JT_HOME) \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    68
	    TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@))
15577
0ed5f9a7f454 8006595: Use jdk/test/Makefile targets in preference to local definitions
mduigou
parents: 15173
diff changeset
    69
21760
9f542d8601a8 8028478: Re-visit JPRT testsets to make it easier to run subsets of the tests
alanb
parents: 19522
diff changeset
    70
jdk_% core_%s svc_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    71
	@$(NO_STOPPING)$(call SUBDIR_TEST, jdk, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    72
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
    73
28006
ebad70f3aa9f 8065673: XML Test Colo: Add test build system for JAXP tests
joehw
parents: 25461
diff changeset
    74
jaxp_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    75
	@$(NO_STOPPING)$(call SUBDIR_TEST, jaxp, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    76
	    $(if $(JDK_TEST_JOBS), CONCURRENCY=$(JDK_TEST_JOBS)) TEST="$@" $@)
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    77
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    78
nashorn_%:
47221
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    79
	@$(NO_STOPPING)$(call SUBDIR_TEST, nashorn, \
3b201865d5c1 8187642: The consolidated repo test makefile disables CONCURRENCY setting to jtreg
erikj
parents: 47218
diff changeset
    80
	    $(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
    81
41648
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    82
SUB_MAKE_ARGS :=
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    83
ifneq ($(TEST_JOBS), 0)
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    84
  ifneq ($(TEST_JOBS), )
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    85
    SUB_MAKE_ARGS += CONCURRENCY=$(TEST_JOBS)
12f2a158f88b 8166738: Enable concurrency in Hotspot jtreg testing
ctornqvi
parents: 37863
diff changeset
    86
  endif
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 32565
diff changeset
    87
endif
24419
b06dcd11db3f 8042804: Support invoking Hotspot tests from top level
mikael
parents: 21760
diff changeset
    88
hotspot_%:
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
    89
	@$(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
    90
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    91
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    92
# jtreg_tests
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    93
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    94
# Invocation:
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    95
#
37863
e5e036fff56c 8156658: Common way to run jtreg tests
sla
parents: 35745
diff changeset
    96
# 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
    97
#
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
    98
# 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
    99
# <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
   100
# example 'hotspot').
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
# 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
   103
# corresponding ../<component>/test/Makefile.
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   104
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   105
ifneq ($(TESTDIRS),)
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   106
  # Extract the component from ../test/<component>/...
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   107
  TESTDIRS_NORM := $(patsubst test/%, %, $(patsubst ../%, %, $(TESTDIRS)))
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   108
  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
   109
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   110
  # Strip off the ../<component>/test prefix and pass the rest as TESTDIRS
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   111
  # to the delegate Makefile
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   112
  # The hotspot tests are in a subdir "java". Accept paths both including
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   113
  # and excluding this extra subdir
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   114
  TESTDIRS_TESTS := $(patsubst $(COMPONENT)/%,%,$(patsubst hotspot/jtreg/%,%, \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   115
      $(patsubst ../%, %, $(TESTDIRS_NORM))))
25461
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   116
endif
2842cbf0da97 8050825: Support running regression tests using jtreg_tests+TESTDIRS from top level
mikael
parents: 24419
diff changeset
   117
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   118
ifneq ($(USE_RUN_TEST), )
55899
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   119
  MKDIR=mkdir
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   120
  MV=mv
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   121
  HEAD=head
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   122
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   123
  jtreg_tests:
55899
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   124
	cd $(TOPDIR) && \
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   125
	    $(MAKE) --no-print-directory -r -R -I make/common/ -f make/RunTestsPrebuilt.gmk \
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   126
	    run-test-prebuilt OUTPUTDIR=$(TEST_OUTPUT_DIR) BOOT_JDK=$(JT_JAVA) \
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   127
	    JT_HOME=$(JT_HOME) JDK_IMAGE_DIR=$(PRODUCT_HOME) \
55899
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   128
	    TEST_IMAGE_DIR=$(TEST_IMAGE_DIR) TEST="$(patsubst ../%,%,$(TESTDIRS)):$(TEST_SELECTION)"
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   129
	$(MKDIR) -p $(TEST_OUTPUT_DIR)/jtreg
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   130
	$(MV) $(TEST_OUTPUT_DIR)/test-results/`$(HEAD) -n 1 $(TEST_OUTPUT_DIR)/test-support/test-last-ids.txt` $(TEST_OUTPUT_DIR)/jtreg/JTreport
789766475fe4 * Properly check provided variables.
ihse
parents: 55898
diff changeset
   131
	$(MV) $(TEST_OUTPUT_DIR)/test-support/`$(HEAD) -n 1 $(TEST_OUTPUT_DIR)/test-support/test-last-ids.txt` $(TEST_OUTPUT_DIR)/jtreg/JTwork
55915
edbc895d637b Improved exit code handling.
ihse
parents: 55899
diff changeset
   132
	$(MV) $(TEST_OUTPUT_DIR)/jtreg/JTreport/exitcode.txt $(TEST_OUTPUT_DIR)/jtreg/exitcode.txt
55921
60356323be38 Try to not exit with error.
ihse
parents: 55915
diff changeset
   133
	$(RM) -f $(MAKESUPPORT_OUTPUTDIR)/exit-with-error
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   134
else
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   135
  jtreg_tests:
47218
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   136
	$(MAKE) --no-print-directory TESTDIRS=$(TESTDIRS_TESTS) \
918745561887 8187445: Forest Consolidation: Make tests work
erikj
parents: 43386
diff changeset
   137
	    $(COMPONENT)_jtreg_tests
55893
9991393c7b3a Add USE_RUN_TEST to test/Makefile.
ihse
parents: 47221
diff changeset
   138
endif
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   139
################################################################
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   140
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   141
# 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
   142
.PHONY: all clean
4947
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   143
eb79472a81de 6928700: Configure top repo for JPRT testing
ohair
parents:
diff changeset
   144
################################################################