Skip to content

Commit 18e1160

Browse files
author
phh
committed
8208647: switch jtreg to 4.2b13
Summary: Increment build number to b13 and replace '?' with String in GatherDiagnosticInfoObserver:startingTestRun Reviewed-by: robm
1 parent 94bd004 commit 18e1160

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

make/conf/jib-profiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ var getJibProfilesDependencies = function (input, common) {
893893
jtreg: {
894894
server: "javare",
895895
revision: "4.2",
896-
build_number: "b12",
896+
build_number: "b13",
897897
checksum_file: "MD5_VALUES",
898898
file: "jtreg_bin-4.2.zip",
899899
environment_name: "JT_HOME",

test/failure_handler/src/share/classes/jdk/test/failurehandler/jtreg/GatherDiagnosticInfoObserver.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2018, 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
@@ -119,10 +119,10 @@ private void gatherEnvInfo(Path workDir, String name, PrintWriter log,
119119
public void startingTestRun(Parameters params) {
120120
// TODO find a better way to get JDKs
121121
InterviewParameters rp = (InterviewParameters) params;
122-
Map<?,?> map = new HashMap<>();
122+
Map<String, String> map = new HashMap<>();
123123
rp.save(map);
124-
compileJdk = (String) map.get("regtest.compilejdk");
125-
testJdk = (String) map.get("regtest.testjdk");
124+
compileJdk = map.get("regtest.compilejdk");
125+
testJdk = map.get("regtest.testjdk");
126126
}
127127

128128
@Override

0 commit comments

Comments
 (0)