Skip to content

Commit e7f8e1f

Browse files
committedJun 16, 2020
8211977: move testlibrary tests into one place
Reviewed-by: erikj, dholmes, ihse
1 parent 5073b8c commit e7f8e1f

35 files changed

+243
-605
lines changed
 

‎make/Main.gmk

+14-1
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,18 @@ $(eval $(call SetupTarget, test-image-jdk-jtreg-native, \
640640
DEPS := build-test-jdk-jtreg-native, \
641641
))
642642

643+
$(eval $(call SetupTarget, build-test-libtest-jtreg-native, \
644+
MAKEFILE := test/JtregNativeLibTest, \
645+
TARGET := build-test-libtest-jtreg-native, \
646+
DEPS := buildtools-jdk, \
647+
))
648+
649+
$(eval $(call SetupTarget, test-image-libtest-jtreg-native, \
650+
MAKEFILE := test/JtregNativeLibTest, \
651+
TARGET := test-image-libtest-jtreg-native, \
652+
DEPS := build-test-libtest-jtreg-native, \
653+
))
654+
643655
$(eval $(call SetupTarget, build-test-hotspot-jtreg-graal, \
644656
MAKEFILE := test/JtregGraalUnit, \
645657
TARGET := build-test-hotspot-jtreg-graal, \
@@ -982,6 +994,7 @@ else
982994
interim-image: $(INTERIM_JMOD_TARGETS)
983995

984996
build-test-hotspot-jtreg-native: hotspot-$(JVM_VARIANT_MAIN)-libs
997+
build-test-libtest-jtreg-native: hotspot-$(JVM_VARIANT_MAIN)-libs
985998

986999
endif
9871000

@@ -1105,7 +1118,7 @@ endif
11051118
docs-image: docs-jdk
11061119

11071120
# This target builds the test image
1108-
test-image: prepare-test-image test-image-jdk-jtreg-native test-image-demos-jdk
1121+
test-image: prepare-test-image test-image-jdk-jtreg-native test-image-demos-jdk test-image-libtest-jtreg-native
11091122

11101123
ifneq ($(JVM_TEST_IMAGE_TARGETS), )
11111124
# If JVM_TEST_IMAGE_TARGETS is externally defined, use it instead of the

‎make/RunTests.gmk

+2
Original file line numberDiff line numberDiff line change
@@ -342,11 +342,13 @@ hotspot_JTREG_MAX_MEM := 0
342342
hotspot_JTREG_ASSERT := false
343343
hotspot_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/hotspot/jtreg/native
344344
jdk_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/jdk/jtreg/native
345+
lib-test_JTREG_NATIVEPATH := $(TEST_IMAGE_DIR)/lib-test/jtreg/native
345346

346347
jdk_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jdk/ProblemList.txt
347348
jaxp_JTREG_PROBLEM_LIST += $(TOPDIR)/test/jaxp/ProblemList.txt
348349
langtools_JTREG_PROBLEM_LIST += $(TOPDIR)/test/langtools/ProblemList.txt
349350
hotspot_JTREG_PROBLEM_LIST += $(TOPDIR)/test/hotspot/jtreg/ProblemList.txt
351+
lib-test_JTREG_PROBLEM_LIST += $(TOPDIR)/test/lib-test/ProblemList.txt
350352

351353
langtools_JTREG_MAX_MEM := 768m
352354

‎make/common/FindTests.gmk

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $(eval $(call IncludeCustomExtension, common/FindTests.gmk))
4343
TEST_BASEDIRS += $(TOPDIR)/test $(TOPDIR)
4444

4545
# JTREG_TESTROOTS might have been set by a custom extension
46-
JTREG_TESTROOTS += $(addprefix $(TOPDIR)/test/, hotspot/jtreg jdk langtools jaxp)
46+
JTREG_TESTROOTS += $(addprefix $(TOPDIR)/test/, hotspot/jtreg jdk langtools jaxp lib-test)
4747

4848
# Extract the names of the Jtreg group files from the TEST.ROOT files. The
4949
# TEST.ROOT files being properties files can be interpreted as makefiles so

‎make/test/JtregNativeHotspot.gmk

-2
Original file line numberDiff line numberDiff line change
@@ -872,10 +872,8 @@ BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exesigtest := -ljvm
872872
ifeq ($(call isTargetOs, windows), true)
873873
BUILD_HOTSPOT_JTREG_EXECUTABLES_CFLAGS_exeFPRegs := -MT
874874
BUILD_HOTSPOT_JTREG_EXCLUDE += exesigtest.c libterminatedThread.c
875-
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := jvm.lib
876875
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libatExit := jvm.lib
877876
else
878-
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := -ljvm
879877
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libbootclssearch_agent += -lpthread
880878
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libsystemclssearch_agent += -lpthread
881879
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libgetsysprop001 += -lpthread

‎make/test/JtregNativeLibTest.gmk

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
#
2+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
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 testlibrary.
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+
38+
$(eval $(call IncludeCustomExtension, test/JtregNativeLibTest.gmk))
39+
40+
################################################################################
41+
# Targets for building the native tests themselves.
42+
################################################################################
43+
44+
# This might have been added to by a custom extension.
45+
BUILD_LIBTEST_JTREG_NATIVE_SRC += $(TOPDIR)/test/lib-test
46+
47+
BUILD_LIBTEST_JTREG_OUTPUT_DIR := $(OUTPUTDIR)/support/test/lib-test/jtreg/native
48+
49+
BUILD_LIBTEST_JTREG_IMAGE_DIR := $(TEST_IMAGE_DIR)/lib-test/jtreg
50+
51+
ifeq ($(call isTargetOs, windows), true)
52+
BUILD_LIBTEST_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := jvm.lib
53+
else
54+
BUILD_LIBTEST_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := -ljvm
55+
endif
56+
57+
# This evaluation is expensive and should only be done if this target was
58+
# explicitly called.
59+
ifneq ($(filter build-test-libtest-jtreg-native, $(MAKECMDGOALS)), )
60+
$(eval $(call SetupTestFilesCompilation, BUILD_LIBTEST_JTREG_LIBRARIES, \
61+
TYPE := LIBRARY, \
62+
SOURCE_DIRS := $(BUILD_LIBTEST_JTREG_NATIVE_SRC), \
63+
OUTPUT_DIR := $(BUILD_LIBTEST_JTREG_OUTPUT_DIR), \
64+
EXCLUDE := $(BUILD_LIBTEST_JTREG_EXCLUDE), \
65+
))
66+
67+
$(eval $(call SetupTestFilesCompilation, BUILD_LIBTEST_JTREG_EXECUTABLES, \
68+
TYPE := PROGRAM, \
69+
SOURCE_DIRS := $(BUILD_LIBTEST_JTREG_NATIVE_SRC), \
70+
OUTPUT_DIR := $(BUILD_LIBTEST_JTREG_OUTPUT_DIR), \
71+
EXCLUDE := $(BUILD_LIBTEST_JTREG_EXCLUDE), \
72+
))
73+
endif
74+
75+
build-test-libtest-jtreg-native: $(BUILD_LIBTEST_JTREG_LIBRARIES) $(BUILD_LIBTEST_JTREG_EXECUTABLES)
76+
77+
################################################################################
78+
# Targets for building test-image.
79+
################################################################################
80+
81+
# Copy to lib-test jtreg test image
82+
$(eval $(call SetupCopyFiles, COPY_LIBTEST_JTREG_NATIVE, \
83+
SRC := $(BUILD_LIBTEST_JTREG_OUTPUT_DIR), \
84+
DEST := $(TEST_IMAGE_DIR)/lib-test/jtreg/native, \
85+
FILES := $(wildcard $(addprefix $(BUILD_LIBTEST_JTREG_OUTPUT_DIR), /bin/* /lib/*)), \
86+
FLATTEN := true, \
87+
))
88+
89+
test-image-libtest-jtreg-native: $(COPY_LIBTEST_JTREG_NATIVE)
90+
91+
all: build-test-libtest-jtreg-native
92+
test-image: test-image-libtest-jtreg-native
93+
94+
.PHONY: default all build-test-libtest-jtreg-native test-image-libtest-jtreg-native test-image

‎test/hotspot/jtreg/TEST.groups

-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ tier1_runtime = \
309309
-runtime/Thread/TestThreadDumpMonitorContention.java \
310310
-runtime/Unsafe/RangeCheck.java \
311311
sanity/ \
312-
testlibrary_tests/TestMutuallyExclusivePlatformPredicates.java \
313312
-:tier1_runtime_appcds_exclude \
314313
-runtime/signal
315314

‎test/hotspot/jtreg/testlibrary/jvmti/libSimpleClassFileLoadHook.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424
/*
25-
* A simple way to test JVMTI ClassFileLoadHook. See ../testlibrary_tests/SimpleClassFileLoadHookTest.java
25+
* A simple way to test JVMTI ClassFileLoadHook. See ../testlibrary_tests/jvmti/SimpleClassFileLoadHookTest.java
2626
* for an example.
2727
*/
2828
#include <stdio.h>

‎test/hotspot/jtreg/testlibrary_tests/AssertsTest.java

-238
This file was deleted.

‎test/hotspot/jtreg/testlibrary_tests/OutputAnalyzerReportingTest.java

-126
This file was deleted.

‎test/hotspot/jtreg/testlibrary_tests/OutputAnalyzerTest.java

-195
This file was deleted.

‎test/hotspot/jtreg/testlibrary_tests/process/Test.java

-28
This file was deleted.

‎test/lib-test/ProblemList.txt

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#
2+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
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.
8+
#
9+
# This code is distributed in the hope that it will be useful, but WITHOUT
10+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
# version 2 for more details (a copy is included in the LICENSE file that
13+
# accompanied this code).
14+
#
15+
# You should have received a copy of the GNU General Public License version
16+
# 2 along with this work; if not, write to the Free Software Foundation,
17+
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
#
19+
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
# or visit www.oracle.com if you need additional information or have any
21+
# questions.
22+
#
23+
24+
#############################################################################
25+
#
26+
# List of quarantined tests -- tests that should not be run by default, because
27+
# they may fail due to known reason. The reason (CR#) must be mandatory specified.
28+
#
29+
# List items are testnames followed by labels, all MUST BE commented
30+
# as to why they are here and use a label:
31+
# generic-all Problems on all platforms
32+
# generic-ARCH Where ARCH is one of: x64, i586, ppc64, ppc64le, s390x etc.
33+
# OSNAME-all Where OSNAME is one of: linux, windows, macosx, aix
34+
# OSNAME-ARCH Specific on to one OSNAME and ARCH, e.g. macosx-x64
35+
# OSNAME-REV Specific on to one OSNAME and REV, e.g. macosx-10.7.4
36+
#
37+
# More than one label is allowed but must be on the same line.
38+
#
39+
#############################################################################
40+

‎test/lib-test/TEST.ROOT

+29
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
1+
#
2+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
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.
8+
#
9+
# This code is distributed in the hope that it will be useful, but WITHOUT
10+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
# version 2 for more details (a copy is included in the LICENSE file that
13+
# accompanied this code).
14+
#
15+
# You should have received a copy of the GNU General Public License version
16+
# 2 along with this work; if not, write to the Free Software Foundation,
17+
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
#
19+
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
# or visit www.oracle.com if you need additional information or have any
21+
# questions.
22+
#
23+
124
# This file identifies the root of the test-suite hierarchy.
225
# It also contains test-suite configuration information.
326

27+
# The list of keywords supported in this test suite
28+
# randomness: test uses randomness, test cases differ from run to run
29+
keys=randomness
30+
431
# Minimum jtreg version
532
requiredVersion=5.1 b1
633

734
# Path to libraries in the topmost test directory. This is needed so @library
835
# does not need ../../ notation to reach them
936
external.lib.roots = ../../
37+
38+
groups=TEST.groups

‎test/lib-test/TEST.groups

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
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.
8+
#
9+
# This code is distributed in the hope that it will be useful, but WITHOUT
10+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
# version 2 for more details (a copy is included in the LICENSE file that
13+
# accompanied this code).
14+
#
15+
# You should have received a copy of the GNU General Public License version
16+
# 2 along with this work; if not, write to the Free Software Foundation,
17+
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
#
19+
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
# or visit www.oracle.com if you need additional information or have any
21+
# questions.
22+
#
23+
24+
tier1 = .

‎test/lib-test/jdk/test/lib/apps/LingeredAppTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
/*
2525
* @test
2626
* @summary Unit test for LingeredApp
27-
* @compile LingeredAppTest.java
28-
* @compile LingeredApp.java
29-
* @run main LingeredAppTest
27+
* @library /test/lib
28+
* @build jdk.test.lib.apps.LingeredAppTest jdk.test.lib.apps.LingeredApp
29+
* @run main jdk.test.lib.apps.LingeredAppTest
3030
*/
3131

3232
package jdk.test.lib.apps;
@@ -52,13 +52,13 @@ public static void main(String[] args) {
5252

5353
cmd.add("-XX:+PrintFlagsFinal");
5454

55-
LingeredApp a = LingeredApp.startApp(cmd.toArray(new String[cmd.length]);
55+
LingeredApp a = LingeredApp.startApp(cmd.toArray(new String[cmd.size()]));
5656
System.out.printf("App pid: %d\n", a.getPid());
5757
a.stopApp();
5858

5959
System.out.println("App output:");
6060
int count = 0;
61-
for (String line : a.getAppOutput()) {
61+
for (String line : a.getOutput().getStdoutAsList()) {
6262
count += 1;
6363
}
6464
System.out.println("Found " + count + " lines in VM output");

‎test/jdk/lib/testlibrary/OutputAnalyzerTest.java ‎test/lib-test/jdk/test/lib/process/OutputAnalyzerTest.java

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -199,6 +199,23 @@ public static void main(String args[]) throws Exception {
199199
} catch (RuntimeException e) {
200200
// expected
201201
}
202+
203+
{
204+
String aaaa = "aaaa";
205+
String result = output.firstMatch(aaaa);
206+
if (!aaaa.equals(result)) {
207+
throw new Exception("firstMatch(String) failed to match. Expected: " + aaaa + " got: " + result);
208+
}
209+
}
210+
211+
{
212+
String aa = "aa";
213+
String aa_grouped_aa = aa + "(" + aa + ")";
214+
String result = output.firstMatch(aa_grouped_aa, 1);
215+
if (!aa.equals(result)) {
216+
throw new Exception("firstMatch(String, int) failed to match. Expected: " + aa + " got: " + result);
217+
}
218+
}
202219
}
203220

204221
}

‎test/hotspot/jtreg/testlibrary_tests/process/TestNativeProcessBuilder.java ‎test/lib-test/jdk/test/lib/process/TestNativeProcessBuilder.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
* @test
2626
* @summary Test the native process builder API.
2727
* @library /test/lib
28-
* @build Test
2928
* @run main/native TestNativeProcessBuilder
3029
*/
3130

@@ -39,6 +38,13 @@ public static void main(String args[]) throws Exception {
3938
ProcessBuilder pb = ProcessTools.createNativeTestProcessBuilder("jvm-test-launcher");
4039
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
4140
new OutputAnalyzer(pb.start())
42-
.shouldHaveExitValue(0);
41+
.shouldHaveExitValue(0)
42+
.stdoutShouldContain("Hello Test");
43+
}
44+
45+
public static class Test {
46+
public static void test() {
47+
System.out.println("Hello Test");
48+
}
4349
}
4450
}

‎test/hotspot/jtreg/testlibrary_tests/process/exejvm-test-launcher.c ‎test/lib-test/jdk/test/lib/process/exejvm-test-launcher.c

+7-4
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ JNIEnv* create_vm(JavaVM **jvm)
4242
args.ignoreUnrecognized = 0;
4343

4444
int ret = JNI_CreateJavaVM(jvm, (void**)&env, &args);
45-
if (ret < 0)
45+
if (ret < 0) {
4646
exit(10);
47+
}
4748

4849
return env;
4950
}
@@ -53,13 +54,15 @@ void run(JNIEnv *env) {
5354
jclass test_class;
5455
jmethodID test_method;
5556

56-
test_class = (*env)->FindClass(env, "Test");
57-
if (test_class == NULL)
57+
test_class = (*env)->FindClass(env, "TestNativeProcessBuilder$Test");
58+
if (test_class == NULL) {
5859
exit(11);
60+
}
5961

6062
test_method = (*env)->GetStaticMethodID(env, test_class, "test", "()V");
61-
if (test_method == NULL)
63+
if (test_method == NULL) {
6264
exit(12);
65+
}
6366

6467
(*env)->CallStaticVoidMethod(env, test_class, test_method);
6568
}

0 commit comments

Comments
 (0)
Please sign in to comment.