8208647: switch jtreg to 4.2b13

Reviewed-by: kvn, dholmes, ihse
This commit is contained in:
Igor Ignatyev 2018-08-01 23:06:33 -07:00
parent 8a5467b9c2
commit d2dd5c4473
2 changed files with 5 additions and 5 deletions

View File

@ -901,7 +901,7 @@ var getJibProfilesDependencies = function (input, common) {
jtreg: {
server: "javare",
revision: "4.2",
build_number: "b12",
build_number: "b13",
checksum_file: "MD5_VALUES",
file: "jtreg_bin-4.2.zip",
environment_name: "JT_HOME",

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -119,10 +119,10 @@ public class GatherDiagnosticInfoObserver implements Harness.Observer {
public void startingTestRun(Parameters params) {
// TODO find a better way to get JDKs
InterviewParameters rp = (InterviewParameters) params;
Map<?,?> map = new HashMap<>();
Map<String, String> map = new HashMap<>();
rp.save(map);
compileJdk = (String) map.get("regtest.compilejdk");
testJdk = (String) map.get("regtest.testjdk");
compileJdk = map.get("regtest.compilejdk");
testJdk = map.get("regtest.testjdk");
}
@Override