Changeset 201206 in webkit


Ignore:
Timestamp:
May 19, 2016 7:25:51 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Add JSON results to 32-bit and CLoop JSC tests
https://bugs.webkit.org/show_bug.cgi?id=157929

Patch by Srinivasan Vijayaraghavan <svijayaraghavan@apple.com> on 2016-05-19
Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:

(RunLLINTCLoopTests): Change command-line parameters to run-javascriptcore-tests in order to get JSON output.
(Run32bitJSCTests): Change command-line parameters to run-javascriptcore-tests in order to get JSON output.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r200956 r201206  
    514514    description = ["cloop-tests running"]
    515515    descriptionDone = ["cloop-tests"]
    516     command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--cloop", "--no-build", "--no-jsc-stress", WithProperties("--%(configuration)s")]
     516    jsonFileName = "jsc_cloop.json"
     517    command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--cloop", "--no-build", "--no-jsc-stress", "--no-fail-fast", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
    517518    failedTestsFormatString = "%d regression%s found."
     519    logfiles = {"json": jsonFileName}
    518520
    519521    def countFailures(self, cmd):
     
    533535    description = ["32bit-jsc-tests running"]
    534536    descriptionDone = ["32bit-jsc-tests"]
    535     command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--32-bit", "--no-build", WithProperties("--%(configuration)s")]
     537    jsonFileName = "jsc_32bit.json"
     538    command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--32-bit", "--no-build", "--no-fail-fast", "--json-output={0}".format(jsonFileName), WithProperties("--%(configuration)s")]
    536539    failedTestsFormatString = "%d regression%s found."
     540    logfiles = {"json": jsonFileName}
    537541
    538542    def countFailures(self, cmd):
  • trunk/Tools/ChangeLog

    r201175 r201206  
     12016-05-19  Srinivasan Vijayaraghavan  <svijayaraghavan@apple.com>
     2
     3        Add JSON results to 32-bit and CLoop JSC tests
     4        https://bugs.webkit.org/show_bug.cgi?id=157929
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     9        (RunLLINTCLoopTests): Change command-line parameters to run-javascriptcore-tests in order to get JSON output.
     10        (Run32bitJSCTests): Change command-line parameters to run-javascriptcore-tests in order to get JSON output.
     11
    1122016-05-19  Csaba Osztrogonác  <ossy@webkit.org>
    213
Note: See TracChangeset for help on using the changeset viewer.