Changeset 89054 in webkit


Ignore:
Timestamp:
Jun 16, 2011 11:46:44 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-16 Dmitry Lomov <dslomov@google.com>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=62603
Run run-api-tests on bots in debug mode.
Release mode is disabled due to https://bugs.webkit.org/show_bug.cgi?id=61812.

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:
Location:
trunk/Tools
Files:
2 edited

Legend:

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

    r88383 r89054  
    309309
    310310        return result
     311
     312class RunUnitTests(shell.Test):
     313    name = "run-api-tests"
     314    description = ["unit tests running"]
     315    descriptionDone = ["unit-tests"]
     316    command = ["perl", "./Tools/Scripts/run-api-tests"]
    311317
    312318class RunPythonTests(shell.Test):
     
    522528        self.addStep(RunJavaScriptCoreTests, skipBuild=True)
    523529        self.addStep(self.TestClass, skipBuild=(platform == 'win'))
     530
     531        # FIXME: Only running in debug mode due to https://bugs.webkit.org/show_bug.cgi?id=61812
     532        if configuration == "debug":
     533            self.addStep(RunUnitTests)
    524534        # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
    525535        # Sadly we have no way to detect the version on the slave from here.
     
    544554            self.addStep(RunChromiumWebKitUnitTests)
    545555        self.addStep(self.TestClass)
     556        # FIXME: Only running in debug mode due to https://bugs.webkit.org/show_bug.cgi?id=61812
     557        if configuration == "debug":
     558            self.addStep(RunUnitTests)
    546559        # Tiger's Python 2.3 is too old.  WebKit Python requires 2.5+.
    547560        # Sadly we have no way to detect the version on the slave from here.
  • trunk/Tools/ChangeLog

    r89053 r89054  
     12011-06-16  Dmitry Lomov  <dslomov@google.com>
     2
     3        Reviewed by David Levin.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=62603
     6        Run run-api-tests on bots in debug mode.
     7        Release mode is disabled due to https://bugs.webkit.org/show_bug.cgi?id=61812.
     8
     9        * BuildSlaveSupport/build.webkit.org-config/master.cfg:
     10
    1112011-06-16  Leandro Pereira  <leandro@profusion.mobi>
    212
Note: See TracChangeset for help on using the changeset viewer.