8153583: Make OutputAnalyzer.reportDiagnosticSummary public
authorstefank
Mon, 11 Apr 2016 08:51:53 +0200
changeset 37459 ff4f09f858b2
parent 37458 5a20a686b58d
child 37460 bda48699fd11
8153583: Make OutputAnalyzer.reportDiagnosticSummary public Reviewed-by: brutisso, sjohanss
hotspot/test/testlibrary/jdk/test/lib/OutputAnalyzer.java
--- a/hotspot/test/testlibrary/jdk/test/lib/OutputAnalyzer.java	Mon Apr 11 08:51:53 2016 +0200
+++ b/hotspot/test/testlibrary/jdk/test/lib/OutputAnalyzer.java	Mon Apr 11 08:51:53 2016 +0200
@@ -378,14 +378,14 @@
    *  - exit code
    *  Note: the command line is printed by the ProcessTools
    */
-    private void reportDiagnosticSummary() {
-        String msg =
-            " stdout: [" + stdout + "];\n" +
-            " stderr: [" + stderr + "]\n" +
-            " exitValue = " + getExitValue() + "\n";
+  public void reportDiagnosticSummary() {
+      String msg =
+          " stdout: [" + stdout + "];\n" +
+          " stderr: [" + stderr + "]\n" +
+          " exitValue = " + getExitValue() + "\n";
 
-        System.err.println(msg);
-    }
+      System.err.println(msg);
+  }
 
 
   /**