Changeset 121768 in webkit


Ignore:
Timestamp:
Jul 3, 2012 8:28:09 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Add run API tests as a step on the build bots
https://bugs.webkit.org/show_bug.cgi?id=87252

Patch by Thiago Marcos P. Santos <thiago.santos@intel.com> on 2012-07-03
Reviewed by Daniel Bates.

Run EFL API test suite on the build bots.

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

(RunEflAPITests):
(TestFactory.init):
(BuildAndTestFactory.init):

  • Scripts/run-efl-tests: Added.
Location:
trunk/Tools
Files:
1 added
2 edited

Legend:

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

    r121760 r121768  
    491491
    492492
     493class RunEflAPITests(shell.Test):
     494    name = "API tests"
     495    description = ["API tests running"]
     496    descriptionDone = ["API tests"]
     497    command = ["perl", "./Tools/Scripts/run-efl-tests", WithProperties("--%(configuration)s")]
     498
     499
    493500class RunGtkAPITests(shell.Test):
    494501    name = "API tests"
     
    738745        self.addStep(UploadTestResults())
    739746        self.addStep(self.ExtractTestResultsClass())
     747        if platform == "efl":
     748            self.addStep(RunEflAPITests)
    740749        if platform == "gtk":
    741750            self.addStep(RunGtkAPITests())
     
    767776        self.addStep(UploadTestResults())
    768777        self.addStep(self.ExtractTestResultsClass())
     778        if platform == "efl":
     779            self.addStep(RunEflAPITests)
    769780        if platform == "gtk":
    770781            self.addStep(RunGtkAPITests())
  • trunk/Tools/ChangeLog

    r121766 r121768  
     12012-07-03  Thiago Marcos P. Santos  <thiago.santos@intel.com>
     2
     3        [EFL] Add run API tests as a step on the build bots
     4        https://bugs.webkit.org/show_bug.cgi?id=87252
     5
     6        Reviewed by Daniel Bates.
     7
     8        Run EFL API test suite on the build bots.
     9
     10        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     11        (RunEflAPITests):
     12        (TestFactory.__init__):
     13        (BuildAndTestFactory.__init__):
     14        * Scripts/run-efl-tests: Added.
     15
    1162012-07-03  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    217
Note: See TracChangeset for help on using the changeset viewer.