Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 1 | # |
Kelly O'Hair | 76cc391 | 2011-04-06 22:14:00 -0700 | [diff] [blame] | 2 | # Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved. |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 3 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | # |
| 5 | # This code is free software; you can redistribute it and/or modify it |
| 6 | # under the terms of the GNU General Public License version 2 only, as |
Kelly O'Hair | 136614e | 2010-05-25 15:51:26 -0700 | [diff] [blame] | 7 | # published by the Free Software Foundation. Oracle designates this |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 8 | # particular file as subject to the "Classpath" exception as provided |
Kelly O'Hair | 136614e | 2010-05-25 15:51:26 -0700 | [diff] [blame] | 9 | # by Oracle in the LICENSE file that accompanied this code. |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 10 | # |
| 11 | # This code is distributed in the hope that it will be useful, but WITHOUT |
| 12 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 13 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 14 | # version 2 for more details (a copy is included in the LICENSE file that |
| 15 | # accompanied this code). |
| 16 | # |
| 17 | # You should have received a copy of the GNU General Public License version |
| 18 | # 2 along with this work; if not, write to the Free Software Foundation, |
| 19 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 20 | # |
Kelly O'Hair | 136614e | 2010-05-25 15:51:26 -0700 | [diff] [blame] | 21 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 22 | # or visit www.oracle.com if you need additional information or have any |
| 23 | # questions. |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 24 | # |
| 25 | |
| 26 | # |
| 27 | # Makefile to run tests from multiple sibling directories |
| 28 | # |
| 29 | |
| 30 | # Root of the forest that was built |
| 31 | TOPDIR=.. |
| 32 | |
| 33 | # This makefile depends on the availability of sibling directories. |
| 34 | LANGTOOLS_DIR=$(TOPDIR)/langtools |
| 35 | JDK_DIR=$(TOPDIR)/jdk |
Mikael Vidstedt | 46cd916 | 2014-05-12 06:16:36 -0700 | [diff] [blame] | 36 | HOTSPOT_DIR=$(TOPDIR)/hotspot |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 37 | |
| 38 | # Macro to run a test target in a subdir |
| 39 | define SUBDIR_TEST # subdirectory target |
| 40 | if [ -d $1 ] ; then \ |
| 41 | if [ -r $1/test/Makefile ] ; then \ |
Mike Duigou | 58d8702 | 2013-02-06 11:12:46 -0800 | [diff] [blame] | 42 | echo "$(MAKE) -k -C $1/test $2" ; \ |
| 43 | $(MAKE) -k -C $1/test $2 ; \ |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 44 | else \ |
| 45 | echo "ERROR: File does not exist: $1/test/Makefile"; \ |
Kelly O'Hair | 235a0d9 | 2010-03-19 18:17:49 -0700 | [diff] [blame] | 46 | exit 1; \ |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 47 | fi; \ |
| 48 | else \ |
| 49 | echo "WARNING: No testing done, directory does not exist: $1"; \ |
| 50 | fi |
| 51 | endef |
| 52 | |
Mike Duigou | 58d8702 | 2013-02-06 11:12:46 -0800 | [diff] [blame] | 53 | # Default test target (core) |
Mike Duigou | f903091 | 2013-08-26 10:09:15 -0700 | [diff] [blame] | 54 | default: jdk_core langtools_jtreg |
Kelly O'Hair | c0323a8 | 2011-12-12 08:11:05 -0800 | [diff] [blame] | 55 | |
| 56 | # All testing |
Mike Duigou | f903091 | 2013-08-26 10:09:15 -0700 | [diff] [blame] | 57 | all: jdk_all langtools_all |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 58 | |
| 59 | # Test targets |
Mike Duigou | f903091 | 2013-08-26 10:09:15 -0700 | [diff] [blame] | 60 | langtools_% : |
Mike Duigou | 3c108d6 | 2013-08-29 16:04:14 -0700 | [diff] [blame] | 61 | @$(NO_STOPPING)$(call SUBDIR_TEST, $(LANGTOOLS_DIR), JT_JAVA=$(PRODUCT_HOME) JTREG_HOME=$(JT_HOME) TEST="$(subst langtools_,,$@)" $(subst langtools_,,$@)) |
Mike Duigou | 58d8702 | 2013-02-06 11:12:46 -0800 | [diff] [blame] | 62 | |
Alan Bateman | e0fbec8 | 2013-11-19 14:11:59 +0000 | [diff] [blame] | 63 | jdk_% core_%s svc_%: |
Mike Duigou | f903091 | 2013-08-26 10:09:15 -0700 | [diff] [blame] | 64 | @$(NO_STOPPING)$(call SUBDIR_TEST, $(JDK_DIR), TEST="$@" $@) |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 65 | |
Mikael Vidstedt | 46cd916 | 2014-05-12 06:16:36 -0700 | [diff] [blame] | 66 | hotspot_%: |
| 67 | @$(NO_STOPPING)$(call SUBDIR_TEST, $(HOTSPOT_DIR), TEST="$@" $@) |
| 68 | |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 69 | ################################################################ |
| 70 | |
| 71 | # Phony targets (e.g. these are not filenames) |
Mike Duigou | f903091 | 2013-08-26 10:09:15 -0700 | [diff] [blame] | 72 | .PHONY: all clean |
Kelly O'Hair | 891aa6b | 2010-03-06 15:00:40 -0800 | [diff] [blame] | 73 | |
| 74 | ################################################################ |