Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JDK-8266254: Update to use jtreg 6 #4315

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 3 additions & 4 deletions make/conf/jib-profiles.js
Expand Up @@ -1133,10 +1133,9 @@ var getJibProfilesDependencies = function (input, common) {
jtreg: {
server: "jpg",
product: "jtreg",
version: "5.1",
build_number: "b01",
checksum_file: "MD5_VALUES",
file: "bundles/jtreg_bin-5.1.zip",
version: "6",
build_number: "1",
file: "bundles/jtreg-6+1.zip",
environment_name: "JT_HOME",
environment_path: input.get("jtreg", "home_path") + "/bin",
configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),
Expand Down
2 changes: 1 addition & 1 deletion test/hotspot/jtreg/TEST.ROOT
Expand Up @@ -78,7 +78,7 @@ requires.properties= \
jdk.containerized

# Minimum jtreg version
requiredVersion=5.1 b1
requiredVersion=6+1

# Path to libraries in the topmost test directory. This is needed so @library
# does not need ../../../ notation to reach them
Expand Down
2 changes: 1 addition & 1 deletion test/jaxp/TEST.ROOT
Expand Up @@ -23,7 +23,7 @@ modules=java.xml
groups=TEST.groups

# Minimum jtreg version
requiredVersion=5.1 b1
requiredVersion=6+1

# Path to libraries in the topmost test directory. This is needed so @library
# does not need ../../ notation to reach them
Expand Down
2 changes: 1 addition & 1 deletion test/jdk/TEST.ROOT
Expand Up @@ -67,7 +67,7 @@ requires.properties= \
jdk.containerized

# Minimum jtreg version
requiredVersion=5.1 b1
requiredVersion=6+1

# Path to libraries in the topmost test directory. This is needed so @library
# does not need ../../ notation to reach them
Expand Down
4 changes: 2 additions & 2 deletions test/jdk/java/lang/ModuleTests/addXXX/test/module-info.java
Expand Up @@ -21,10 +21,10 @@
* questions.
*/
module test {
exports test to testng;
exports test to org.testng;

requires m2;
requires m3;
requires m4;
requires testng;
requires org.testng;
}
Expand Up @@ -22,6 +22,6 @@
*/

module test {
requires testng;
exports p to testng; // TestNG invokes the public methods
requires org.testng;
exports p to org.testng; // TestNG invokes the public methods
}
2 changes: 1 addition & 1 deletion test/jdk/java/lang/invoke/modules/m1/module-info.java
Expand Up @@ -22,6 +22,6 @@
*/
module m1 {
requires m2;
requires testng;
requires org.testng;
exports p1;
}
2 changes: 1 addition & 1 deletion test/jdk/java/lang/invoke/modules/m3/module-info.java
Expand Up @@ -24,7 +24,7 @@
module m3 {
requires m4;
requires m5;
requires testng;
requires org.testng;
requires java.management;
exports c1;
opens c2 to m5;
Expand Down
Expand Up @@ -36,6 +36,6 @@
provides S4 with P4;
provides S5 with P5;
provides S6 with P6;
requires testng;
exports p to testng;
requires org.testng;
exports p to org.testng;
}
2 changes: 1 addition & 1 deletion test/langtools/TEST.ROOT
Expand Up @@ -15,7 +15,7 @@ keys=intermittent randomness
groups=TEST.groups

# Minimum jtreg version
requiredVersion=5.1 b1
requiredVersion=6+1

# Use new module options
useNewOptions=true
Expand Down
2 changes: 1 addition & 1 deletion test/lib-test/TEST.ROOT
Expand Up @@ -29,7 +29,7 @@
keys=randomness

# Minimum jtreg version
requiredVersion=5.1 b1
requiredVersion=6+1

# Path to libraries in the topmost test directory. This is needed so @library
# does not need ../../ notation to reach them
Expand Down