Changeset 200040 in webkit


Ignore:
Timestamp:
Apr 25, 2016 12:43:55 PM (8 years ago)
Author:
dbates@webkit.org
Message:

Unreviewed, rolling out r199916.
https://bugs.webkit.org/show_bug.cgi?id=156989

Might break buildbot when master is restarted (Requested by
Srinivasan Vijayaraghava, Guest100, on #webkit).

Reverted changeset:

"Add JSC test results in json format to a buildbot log"
https://bugs.webkit.org/show_bug.cgi?id=156920
http://trac.webkit.org/changeset/199916

Patch by Commit Queue <commit-queue@webkit.org> on 2016-04-25

Location:
trunk/Tools
Files:
3 edited

Legend:

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

    r199916 r200040  
    4545c['status'] = []
    4646c['status'].append(html.WebStatus(http_port=8710,
    47                                   revlink="https://trac.webkit.org/changeset/%s",
     47                                  revlink="https://trac.webkit.org/changeset/%s", 
    4848                                  changecommentlink=(r"(https://bugs\.webkit\.org/show_bug\.cgi\?id=|webkit\.org/b/)(\d+)", r"https://bugs.webkit.org/show_bug.cgi?id=\2"),
    4949                                  authz=authz))
     
    229229    def createSummary(self, log):
    230230        platform = self.getProperty('platform')
    231         if platform.startswith('mac'):
     231        if platform.startswith('mac'):   
    232232            warnings = []
    233233            errors = []
     
    299299    description = ["jscore-tests running"]
    300300    descriptionDone = ["jscore-tests"]
    301     _jsonFileName = "jsc_test_failures.json"
    302     command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--no-build", WithProperties("--%(configuration)s", "--json-output=%(_jsonFileName)s")]
     301    command = ["perl", "./Tools/Scripts/run-javascriptcore-tests", "--no-build", WithProperties("--%(configuration)s")]
    303302    failedTestsFormatString = "%d JSC test%s failed"
    304     logfiles = {"json": _jsonFileName}
    305303
    306304    def start(self):
  • trunk/Tools/ChangeLog

    r199969 r200040  
     12016-04-25  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r199916.
     4        https://bugs.webkit.org/show_bug.cgi?id=156989
     5
     6        Might break buildbot when master is restarted (Requested by
     7        Srinivasan Vijayaraghava, Guest100, on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Add JSC test results in json format to a buildbot log"
     12        https://bugs.webkit.org/show_bug.cgi?id=156920
     13        http://trac.webkit.org/changeset/199916
     14
    1152016-04-23  Chris Dumez  <cdumez@apple.com>
    216
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r199916 r200040  
    333333    if (defined($jsonFileName)) {
    334334        my %jsonData = (
    335             "failures" => \@jscStressFailList,
     335            "numJSCStressFailures" => $numJSCStressFailures,
     336            "jscStressFailList" => \@jscStressFailList,
    336337        );
    337338
Note: See TracChangeset for help on using the changeset viewer.