Index: build.xml =================================================================== --- build.xml (revision 579146) +++ build.xml (working copy) @@ -394,7 +394,7 @@ - + Index: summary-reporter/src/org/apache/harmony/eut/reporter/EUTHTMLSummaryEmitter.java =================================================================== --- summary-reporter/src/org/apache/harmony/eut/reporter/EUTHTMLSummaryEmitter.java +++ summary-reporter/src/org/apache/harmony/eut/reporter/EUTHTMLSummaryEmitter.java @@ -22,7 +22,7 @@ */ final class EUTHTMLSummaryEmitter { - /** Keeps the output stream to write the index.htm data into. */ + /** Keeps the output stream to write the index.html data into. */ private static PrintWriter out; /** Emits JUnit like html report with EUT specific fields w/o frames. */ @@ -35,6 +35,7 @@ emitAbsoluteSummary(esi.ss, esi.tests_crashed_total); emitNoteOfErrorFailures(); emitNoteOfSummary(); + emitLinksToLogReports(); emitSuitesStatictics(); emitHTMLEnd(); } @@ -153,6 +154,21 @@ out.println(" "); } + private static void emitLinksToLogReports() { + out.println(""); + out.println(" "); + out.println("
"); + out.println(" For more details see also:"); + + out.println("
  • output.txt - " + + "contains EUT scripts run output (both standard and error)."); + out.println("
  • report.txt - " + + "contains unexpected failures/errors details (like stack " + + "traces) collected from correspondent xml reports."); + + out.println("
  • "); + } + private static void emitSuitesStatictics() { out.println("

    Suites Detailes

    "); out.println(""); out.println(" "); out.println(" "); - out.println(" "); + out.println(" "); } } out.println("
    " + si.name + "" + si.tests_total + "not runnot run" + + "
    "); Index: summary-reporter/src/org/apache/harmony/eut/reporter/EUTReporter.java =================================================================== --- summary-reporter/src/org/apache/harmony/eut/reporter/EUTReporter.java +++ summary-reporter/src/org/apache/harmony/eut/reporter/EUTReporter.java @@ -222,9 +222,9 @@ esi.testedJavaVersionLog = testedJavaVersionLog; esi.runningJavaVersionLog = runningJavaVersionLog; - // print statistics into summary index.htm + // print statistics into summary index.html PrintWriter out = new PrintWriter(results_dir + File.separatorChar + - "index.htm"); + "index.html"); EUTHTMLSummaryEmitter.emitHTMLReport(out, esi); out.close(); Index: summary-reporter/src/org/apache/harmony/eut/reporter/EUTTXTReportEmitter.java =================================================================== --- summary-reporter/src/org/apache/harmony/eut/reporter/EUTTXTReportEmitter.java +++ summary-reporter/src/org/apache/harmony/eut/reporter/EUTTXTReportEmitter.java @@ -25,7 +25,7 @@ */ final class EUTTXTReportEmitter { - /** Keeps the output stream to write the index.htm data into. */ + /** Keeps the output stream to write the report.txt data into. */ private static PrintWriter out; /** Emits EUT issues information into specified output. */