Changeset 155523 in webkit


Ignore:
Timestamp:
Sep 11, 2013 7:07:26 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Performance tester bots should report the number of failing tests
https://bugs.webkit.org/show_bug.cgi?id=120462

Patch by Gabor Abraham <abrhm@inf.u-szeged.hu> on 2013-09-11
Reviewed by Csaba Osztrogonác.

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

(RunAndUploadPerfTests.start.getText):
(RunAndUploadPerfTests.start):
(RunAndUploadPerfTests):
(RunAndUploadPerfTests.start.getText2):

Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r155501 r155523  
    671671       self.setCommand(self.command)
    672672       return shell.Test.start(self)
     673
     674    def getText(self, cmd, results):
     675        return self.getText2(cmd, results)
     676
     677    def getText2(self, cmd, results):
     678        if results != SUCCESS
     679            return ["%d perf tests failed" % cmd.rc]
     680
     681        return [self.name]
    673682
    674683
  • trunk/Tools/ChangeLog

    r155518 r155523  
     12013-09-11  Gabor Abraham  <abrhm@inf.u-szeged.hu>
     2
     3        Performance tester bots should report the number of failing tests
     4        https://bugs.webkit.org/show_bug.cgi?id=120462
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     9        (RunAndUploadPerfTests.start.getText):
     10        (RunAndUploadPerfTests.start):
     11        (RunAndUploadPerfTests):
     12        (RunAndUploadPerfTests.start.getText2):
     13
    1142013-09-11  Krzysztof Czech  <k.czech@samsung.com>
    215
Note: See TracChangeset for help on using the changeset viewer.