8153583: Make OutputAnalyzer.reportDiagnosticSummary public

Mon, 11 Apr 2016 08:51:53 +0200

author
stefank
date
Mon, 11 Apr 2016 08:51:53 +0200
changeset 9948
ae4fc0906f45
parent 9947
db357034b763
child 9949
fb74ae591209

8153583: Make OutputAnalyzer.reportDiagnosticSummary public
Reviewed-by: brutisso, sjohanss

test/testlibrary/com/oracle/java/testlibrary/OutputAnalyzer.java file | annotate | diff | comparison | revisions
     1.1 --- a/test/testlibrary/com/oracle/java/testlibrary/OutputAnalyzer.java	Tue Jun 16 11:03:04 2020 +0800
     1.2 +++ b/test/testlibrary/com/oracle/java/testlibrary/OutputAnalyzer.java	Mon Apr 11 08:51:53 2016 +0200
     1.3 @@ -374,14 +374,14 @@
     1.4     *  - exit code
     1.5     *  Note: the command line is printed by the ProcessTools
     1.6     */
     1.7 -    private void reportDiagnosticSummary() {
     1.8 -        String msg =
     1.9 -            " stdout: [" + stdout + "];\n" +
    1.10 -            " stderr: [" + stderr + "]\n" +
    1.11 -            " exitValue = " + getExitValue() + "\n";
    1.12 +  public void reportDiagnosticSummary() {
    1.13 +      String msg =
    1.14 +          " stdout: [" + stdout + "];\n" +
    1.15 +          " stderr: [" + stderr + "]\n" +
    1.16 +          " exitValue = " + getExitValue() + "\n";
    1.17  
    1.18 -        System.err.println(msg);
    1.19 -    }
    1.20 +      System.err.println(msg);
    1.21 +  }
    1.22  
    1.23  
    1.24    /**

mercurial