Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gtest/GTestWrapper.java
41144 views
1
/*
2
* Copyright (c) 2016, 2021, 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
/* @test
25
* @summary a jtreg wrapper for gtest tests
26
* @library /test/lib
27
* @modules java.base/jdk.internal.misc
28
* java.xml
29
* @requires vm.flagless
30
* @run main/native GTestWrapper
31
*/
32
33
import jdk.test.lib.Platform;
34
import jdk.test.lib.Utils;
35
import jdk.test.lib.process.ProcessTools;
36
37
import java.io.File;
38
import java.nio.file.Files;
39
import java.nio.file.Path;
40
import java.nio.file.Paths;
41
import java.util.ArrayList;
42
import java.util.Collections;
43
import java.util.List;
44
import java.util.Map;
45
46
public class GTestWrapper {
47
public static void main(String[] args) throws Throwable {
48
// gtestLauncher is located in <test_image>/hotspot/gtest/<vm_variant>/
49
// nativePath points either to <test_image>/hotspot/jtreg/native or to <test_image>/hotspot/gtest
50
Path nativePath = Paths.get(Utils.TEST_NATIVE_PATH);
51
String jvmVariantDir = getJVMVariantSubDir();
52
// let's assume it's <test_image>/hotspot/gtest
53
Path path = nativePath.resolve(jvmVariantDir);
54
if (!path.toFile().exists()) {
55
// maybe it is <test_image>/hotspot/jtreg/native
56
path = nativePath.getParent()
57
.getParent()
58
.resolve("gtest")
59
.resolve(jvmVariantDir);
60
}
61
if (!path.toFile().exists()) {
62
throw new Error("TESTBUG: the library has not been found in " + nativePath + ". Did you forget to use --with-gtest to configure?");
63
}
64
65
Path execPath = path.resolve("gtestLauncher" + (Platform.isWindows() ? ".exe" : ""));
66
ProcessBuilder pb = new ProcessBuilder();
67
Map<String, String> env = pb.environment();
68
69
// The GTestWrapper was started using the normal java launcher, which
70
// may have set LD_LIBRARY_PATH or LIBPATH to point to the jdk libjvm. In
71
// that case, prepend the path with the location of the gtest library."
72
73
String pathVar = Platform.sharedLibraryPathVariableName();
74
String ldLibraryPath = System.getenv(pathVar);
75
if (ldLibraryPath != null) {
76
env.put(pathVar, path + File.pathSeparator + ldLibraryPath);
77
}
78
79
Path resultFile = Paths.get("test_result.xml");
80
81
ArrayList<String> command = new ArrayList<>();
82
command.add(execPath.toAbsolutePath().toString());
83
command.add("-jdk");
84
command.add(Utils.TEST_JDK);
85
command.add("--gtest_output=xml:" + resultFile);
86
command.add("--gtest_catch_exceptions=0" + resultFile);
87
for (String a : args) {
88
command.add(a);
89
}
90
pb.command(command);
91
int exitCode = ProcessTools.executeCommand(pb).getExitValue();
92
if (exitCode != 0) {
93
List<String> failedTests = failedTests(resultFile);
94
String message = "gtest execution failed; exit code = " + exitCode + ".";
95
if (!failedTests.isEmpty()) {
96
message += " the failed tests: " + failedTests;
97
}
98
throw new AssertionError(message);
99
}
100
}
101
102
private static List<String> failedTests(Path xml) {
103
if (!Files.exists(xml)) {
104
System.err.println("WARNING: test result file (" + xml + ") hasn't been found");
105
}
106
107
try {
108
return new GTestResultParser(xml).failedTests();
109
} catch (Throwable t) {
110
System.err.println("WARNING: failed to parse result file (" + xml + ") " + t);
111
t.printStackTrace();
112
}
113
return Collections.emptyList();
114
}
115
116
private static String getJVMVariantSubDir() {
117
if (Platform.isServer()) {
118
return "server";
119
} else if (Platform.isClient()) {
120
return "client";
121
} else if (Platform.isMinimal()) {
122
return "minimal";
123
} else if (Platform.isZero()) {
124
return "zero";
125
} else {
126
throw new Error("TESTBUG: unsupported vm variant");
127
}
128
}
129
}
130
131