test/lib/Makefile
author duke
Wed, 05 Jul 2017 20:40:41 +0200
changeset 31499 fae46850f641
parent 31011 74f74963b502
child 31570 ba79fda027f2
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     1
#
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
     2
# Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     4
#
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     7
# published by the Free Software Foundation.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     8
#
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.	See the GNU General Public License
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    13
# accompanied this code).
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    14
#
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    18
#
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    20
# or visit www.oracle.com if you need additional information or have any
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    21
# questions.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    22
#
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    23
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    24
# Utility Makefile that creates wb.jar, which is used to simplify using 
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    25
# the Whitebox API outside the jtreg-testbase.
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    26
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    27
ifneq "x$(ALT_BOOTDIR)" "x"
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    28
	BOOTDIR := $(ALT_BOOTDIR)
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    29
endif
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    30
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    31
ifeq "x$(BOOTDIR)" "x"
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    32
	JDK_HOME := $(shell dirname $(shell which java))/..
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    33
else
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    34
	JDK_HOME := $(BOOTDIR)
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    35
endif
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    36
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    37
SRC_DIR = ./
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    38
BUILD_DIR = build
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    39
OUTPUT_DIR = $(BUILD_DIR)/classes
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    40
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    41
JAVAC = $(JDK_HOME)/bin/javac
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    42
JAR = $(JDK_HOME)/bin/jar
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    43
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    44
WB_SRC_FILES = $(shell find $(SRC_DIR)/sun/hotspot -name '*.java')
31011
74f74963b502 8081037: serviceability/sa/ tests time out on Windows
ykantser
parents: 30546
diff changeset
    45
# test-lib.jar will contain only hprof classes until JDK-8081381 is resolved
74f74963b502 8081037: serviceability/sa/ tests time out on Windows
ykantser
parents: 30546
diff changeset
    46
SHARE_SRC_FILES = $(shell find $(SRC_DIR)/share/classes/jdk/test/lib/hprof -name '*.java')
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    47
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    48
.PHONY: wb.filelist share.filelist clean cleantmp
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    49
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    50
all: wb.jar test-lib.jar cleantmp
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    51
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    52
wb.jar: wb.filelist
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    53
	@mkdir -p $(OUTPUT_DIR)
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    54
	$(JAVAC) -sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) -cp $(OUTPUT_DIR) @wb.filelist
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    55
	$(JAR) cf wb.jar -C $(OUTPUT_DIR) .
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    56
	@rm -rf $(OUTPUT_DIR)
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    57
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    58
wb.filelist: $(WB_SRC_FILES)
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    59
	@rm -f $@
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    60
	@echo $(WB_SRC_FILES) > $@
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    61
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    62
test-lib.jar: share.filelist
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    63
	@mkdir -p $(OUTPUT_DIR)
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    64
	$(JAVAC) -sourcepath $(SRC_DIR) -d $(OUTPUT_DIR) -cp $(OUTPUT_DIR) @share.filelist
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    65
	$(JAR) cf test-lib.jar -C $(OUTPUT_DIR) .
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    66
	@rm -rf $(OUTPUT_DIR)
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    67
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    68
share.filelist: $(SHARE_SRC_FILES)
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    69
	@rm -f $@
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    70
	@echo $(SHARE_SRC_FILES) > $@
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    71
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    72
clean: cleantmp
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    73
	@rm -rf wb.jar
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    74
	@rm -rf test-list.jar
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    75
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    76
cleantmp:
30546
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    77
	@rm -rf wb.filelist
117bedb6fcf8 8079200: Fix heapdump tests to validate heapdump after jhat is removed
ykantser
parents: 28154
diff changeset
    78
	@rm -rf share.filelist
28154
342e86350dc8 8066433: Move Whitebox test library to top level repository
thartmann
parents:
diff changeset
    79
	@rm -rf $(BUILD_DIR)