--- old/test/gc/stress/gcbasher/TestGCBasher.java 2017-04-03 11:55:19.124241378 +0200 +++ new/test/gc/stress/gcbasher/TestGCBasher.java 2017-04-03 11:55:18.980240664 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2017, 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 @@ -48,7 +48,7 @@ } } - public static void run(String[] args) throws IOException { + public static void main(String[] args) throws IOException { if (args.length != 1) { System.err.println("Usage: TestGCBasher "); return; --- old/test/gc/stress/gcbasher/TestGCBasherWithCMS.java 2017-04-03 11:55:19.668244075 +0200 +++ new/test/gc/stress/gcbasher/TestGCBasherWithCMS.java 2017-04-03 11:55:19.548243480 +0200 @@ -35,6 +35,6 @@ */ public class TestGCBasherWithCMS { public static void main(String[] args) throws IOException { - TestGCBasher.run(args); + TestGCBasher.main(args); } } --- old/test/gc/stress/gcbasher/TestGCBasherWithG1.java 2017-04-03 11:55:20.168246555 +0200 +++ new/test/gc/stress/gcbasher/TestGCBasherWithG1.java 2017-04-03 11:55:20.048245960 +0200 @@ -35,6 +35,6 @@ */ public class TestGCBasherWithG1 { public static void main(String[] args) throws IOException { - TestGCBasher.run(args); + TestGCBasher.main(args); } } --- old/test/gc/stress/gcbasher/TestGCBasherWithParallel.java 2017-04-03 11:55:20.696249173 +0200 +++ new/test/gc/stress/gcbasher/TestGCBasherWithParallel.java 2017-04-03 11:55:20.552248459 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2017, 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 @@ -35,6 +35,6 @@ */ public class TestGCBasherWithParallel { public static void main(String[] args) throws IOException { - TestGCBasher.run(args); + TestGCBasher.main(args); } } --- old/test/gc/stress/gcbasher/TestGCBasherWithSerial.java 2017-04-03 11:55:21.216251751 +0200 +++ new/test/gc/stress/gcbasher/TestGCBasherWithSerial.java 2017-04-03 11:55:21.096251156 +0200 @@ -35,6 +35,6 @@ */ public class TestGCBasherWithSerial { public static void main(String[] args) throws IOException { - TestGCBasher.run(args); + TestGCBasher.main(args); } }