Changeset 251017 in webkit


Ignore:
Timestamp:
Oct 11, 2019 12:17:18 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[build.webkit.org] API tests should output result summary in json format
https://bugs.webkit.org/show_bug.cgi?id=202854

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/build.webkit.org-config/steps.py:

(RunAPITests): Output results in json format as well.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/steps.py

    r250966 r251017  
    542542    description = ["api tests running"]
    543543    descriptionDone = ["api-tests"]
     544    jsonFileName = "api_test_results.json"
     545    logfiles = {"json": jsonFileName}
    544546    command = [
    545547        "python",
    546548        "./Tools/Scripts/run-api-tests",
    547549        "--no-build",
     550        "--json-output={0}".format(jsonFileName),
    548551        WithProperties("--%(configuration)s"),
    549552        "--verbose",
  • trunk/Tools/ChangeLog

    r251008 r251017  
     12019-10-11  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [build.webkit.org] API tests should output result summary in json format
     4        https://bugs.webkit.org/show_bug.cgi?id=202854
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/steps.py:
     9        (RunAPITests): Output results in json format as well.
     10
    1112019-10-11  Jonathan Bedard  <jbedard@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.