author | naoto |
Thu, 20 Jun 2019 11:21:54 -0700 | |
changeset 55446 | 1aae575eb1ef |
parent 54987 | 2ffbc00d87ae |
permissions | -rw-r--r-- |
29219 | 1 |
# |
54446
b16e8a886fc3
8221530: Caller sensitive methods not handling caller = null when invoked by JNI code with no java frames on stack
mchung
parents:
54083
diff
changeset
|
2 |
# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. |
29219 | 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 |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
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 |
# |
|
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. |
|
24 |
# |
|
25 |
||
26 |
################################################################################ |
|
27 |
# This file builds the native component of the JTReg tests for JDK. |
|
28 |
# It also covers the test-image part, where the built files are copied to the |
|
29 |
# test image. |
|
30 |
################################################################################ |
|
31 |
||
32 |
default: all |
|
33 |
||
34 |
include $(SPEC) |
|
35 |
include MakeBase.gmk |
|
36 |
include TestFilesCompilation.gmk |
|
37 |
||
47326
00f9fe99736e
8188050: UnsatisfiedLinkError after repo consolidation
erikj
parents:
47314
diff
changeset
|
38 |
$(eval $(call IncludeCustomExtension, test/JtregNativeJdk.gmk)) |
46840 | 39 |
|
29219 | 40 |
################################################################################ |
41 |
# Targets for building the native tests themselves. |
|
42 |
################################################################################ |
|
43 |
||
49253
26f624b33218
8199681: Remove boilerplate code from creating native jtreg tests
ihse
parents:
49241
diff
changeset
|
44 |
# This might have been added to by a custom extension. |
26f624b33218
8199681: Remove boilerplate code from creating native jtreg tests
ihse
parents:
49241
diff
changeset
|
45 |
BUILD_JDK_JTREG_NATIVE_SRC += $(TOPDIR)/test/jdk |
47428 | 46 |
|
47253
92fd0e04e0e1
8187544: Replace BUILD_OUTPUT and OUTPUT_ROOT with OUTPUTDIR
ihse
parents:
47217
diff
changeset
|
47 |
BUILD_JDK_JTREG_OUTPUT_DIR := $(OUTPUTDIR)/support/test/jdk/jtreg/native |
29219 | 48 |
|
49 |
BUILD_JDK_JTREG_IMAGE_DIR := $(TEST_IMAGE_DIR)/jdk/jtreg |
|
50 |
||
52788
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
51 |
BUILD_JDK_JTREG_EXECUTABLES_CFLAGS_exeJliLaunchTest := \ |
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
52 |
-I$(TOPDIR)/src/java.base/share/native/libjli \ |
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
53 |
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \ |
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
54 |
-I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli |
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
55 |
|
49253
26f624b33218
8199681: Remove boilerplate code from creating native jtreg tests
ihse
parents:
49241
diff
changeset
|
56 |
# Platform specific setup |
53683 | 57 |
ifeq ($(call isTargetOs, windows), true) |
49253
26f624b33218
8199681: Remove boilerplate code from creating native jtreg tests
ihse
parents:
49241
diff
changeset
|
58 |
BUILD_JDK_JTREG_EXCLUDE += libDirectIO.c libInheritedChannel.c |
26f624b33218
8199681: Remove boilerplate code from creating native jtreg tests
ihse
parents:
49241
diff
changeset
|
59 |
|
49241 | 60 |
WIN_LIB_JAVA := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib |
61 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libstringPlatformChars := $(WIN_LIB_JAVA) |
|
52788
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
62 |
WIN_LIB_JLI := $(SUPPORT_OUTPUTDIR)/native/java.base/libjli/jli.lib |
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
63 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeJliLaunchTest := $(WIN_LIB_JLI) |
54448
cd2879e0c165
8222082: Build of test/jdk/java/lang/reflect/exeCallerAccessTest/exeCallerAccessTest.c still failing on Windows
mchung
parents:
54446
diff
changeset
|
64 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeCallerAccessTest := jvm.lib |
54987
2ffbc00d87ae
8214545: sun/management/jmxremote/bootstrap tests hang in revokeall.exe on Windows
dtitov
parents:
54824
diff
changeset
|
65 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exerevokeall := advapi32.lib |
49241 | 66 |
else |
67 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libstringPlatformChars := -ljava |
|
68 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libDirectIO := -ljava |
|
54987
2ffbc00d87ae
8214545: sun/management/jmxremote/bootstrap tests hang in revokeall.exe on Windows
dtitov
parents:
54824
diff
changeset
|
69 |
BUILD_JDK_JTREG_EXCLUDE += exerevokeall.c |
53683 | 70 |
ifeq ($(call isTargetOs, linux), true) |
49128
97288886180c
8198834: (ch) Enable java/nio/channels/spi/SelectorProvider/inheritedChannel/InheritedChannelTest.java on linux-x64
bpb
parents:
47707
diff
changeset
|
71 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libInheritedChannel := -ljava |
53683 | 72 |
else ifeq ($(call isTargetOs, solaris), true) |
52778
dbbf46b13d52
8211842: IPv6_supported wrongly returns false when unix domain socket is bound to fd 0
michaelm
parents:
50341
diff
changeset
|
73 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libInheritedChannel := -ljava -lsocket -lnsl |
49241 | 74 |
endif |
52788
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
75 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeJliLaunchTest := -ljli |
54448
cd2879e0c165
8222082: Build of test/jdk/java/lang/reflect/exeCallerAccessTest/exeCallerAccessTest.c still failing on Windows
mchung
parents:
54446
diff
changeset
|
76 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeCallerAccessTest := -ljvm |
45572
07f412070bd9
8181147: JNI_GetStringPlatformChars should have a fast path for UTF-8
redestad
parents:
29219
diff
changeset
|
77 |
endif |
07f412070bd9
8181147: JNI_GetStringPlatformChars should have a fast path for UTF-8
redestad
parents:
29219
diff
changeset
|
78 |
|
53683 | 79 |
ifeq ($(call isTargetOs, macosx), true) |
50341
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
80 |
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libTestMainKeyWindow := -ObjC |
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
81 |
BUILD_JDK_JTREG_LIBRARIES_LIBS_libTestMainKeyWindow := -framework JavaVM \ |
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
82 |
-framework Cocoa -framework JavaNativeFoundation |
52788
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
83 |
BUILD_JDK_JTREG_EXECUTABLES_LIBS_exeJniInvocationTest := -ljli |
50341
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
84 |
else |
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
85 |
BUILD_JDK_JTREG_EXCLUDE += libTestMainKeyWindow.c |
52788
241b8151b6b6
8213362: [macOS] Could not find libjava.dylib error when initializing JVM via JNI_CreateJavaVM
henryjen
parents:
52778
diff
changeset
|
86 |
BUILD_JDK_JTREG_EXCLUDE += exeJniInvocationTest.c |
50341
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
87 |
endif |
b933614e855e
8194327: [macos] AWT windows have incorrect main/key window behaviors
serb
parents:
49253
diff
changeset
|
88 |
|
54824
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
89 |
ifeq ($(call isTargetOs, linux), true) |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
90 |
# Unconditionally compile with debug symbols and don't ever perform |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
91 |
# stripping during the test libraries' build. |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
92 |
BUILD_JDK_JTREG_LIBRARIES_CFLAGS_libFib := -g |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
93 |
BUILD_JDK_JTREG_LIBRARIES_STRIP_SYMBOLS_libFib := false |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
94 |
endif |
adb3a3aa2e52
8214796: Create a jlink plugin for stripping debug info symbols from native libraries
sgehwolf
parents:
54448
diff
changeset
|
95 |
|
54076
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
96 |
# This evaluation is expensive and should only be done if this target was |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
97 |
# explicitly called. |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
98 |
ifneq ($(filter build-test-jdk-jtreg-native, $(MAKECMDGOALS)), ) |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
99 |
$(eval $(call SetupTestFilesCompilation, BUILD_JDK_JTREG_LIBRARIES, \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
100 |
TYPE := LIBRARY, \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
101 |
SOURCE_DIRS := $(BUILD_JDK_JTREG_NATIVE_SRC), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
102 |
OUTPUT_DIR := $(BUILD_JDK_JTREG_OUTPUT_DIR), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
103 |
EXCLUDE := $(BUILD_JDK_JTREG_EXCLUDE), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
104 |
)) |
29219 | 105 |
|
54076
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
106 |
$(eval $(call SetupTestFilesCompilation, BUILD_JDK_JTREG_EXECUTABLES, \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
107 |
TYPE := PROGRAM, \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
108 |
SOURCE_DIRS := $(BUILD_JDK_JTREG_NATIVE_SRC), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
109 |
OUTPUT_DIR := $(BUILD_JDK_JTREG_OUTPUT_DIR), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
110 |
EXCLUDE := $(BUILD_JDK_JTREG_EXCLUDE), \ |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
111 |
)) |
4b4745d185eb
8220383: Incremental build is broken and inefficient
erikj
parents:
53683
diff
changeset
|
112 |
endif |
29219 | 113 |
|
114 |
build-test-jdk-jtreg-native: $(BUILD_JDK_JTREG_LIBRARIES) $(BUILD_JDK_JTREG_EXECUTABLES) |
|
115 |
||
116 |
################################################################################ |
|
117 |
# Targets for building test-image. |
|
118 |
################################################################################ |
|
119 |
||
120 |
# Copy to jdk jtreg test image |
|
121 |
$(eval $(call SetupCopyFiles,COPY_JDK_JTREG_NATIVE, \ |
|
122 |
SRC := $(BUILD_JDK_JTREG_OUTPUT_DIR), \ |
|
123 |
DEST := $(TEST_IMAGE_DIR)/jdk/jtreg/native, \ |
|
54083 | 124 |
FILES := $(wildcard $(addprefix $(BUILD_JDK_JTREG_OUTPUT_DIR), /bin/* /lib/*)), \ |
125 |
FLATTEN := true, \ |
|
126 |
)) |
|
29219 | 127 |
|
128 |
test-image-jdk-jtreg-native: $(COPY_JDK_JTREG_NATIVE) |
|
129 |
||
130 |
all: build-test-jdk-jtreg-native |
|
131 |
test-image: test-image-jdk-jtreg-native |
|
132 |
||
133 |
.PHONY: default all build-test-jdk-jtreg-native test-image-jdk-jtreg-native test-image |