Changeset 52989 in webkit


Ignore:
Timestamp:
Jan 8, 2010 4:59:05 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-08 Eric Seidel <eric@webkit.org>

Reviewed by Simon Hausmann.

commit-queue should run run-javascriptcore-tests
https://bugs.webkit.org/show_bug.cgi?id=33376

I also made it run the python and perl unit tests.

  • Scripts/webkitpy/steps/runtests.py:
  • Scripts/webkitpy/webkitport.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r52976 r52989  
     12010-01-08  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        commit-queue should run run-javascriptcore-tests
     6        https://bugs.webkit.org/show_bug.cgi?id=33376
     7
     8        I also made it run the python and perl unit tests.
     9
     10        * Scripts/webkitpy/steps/runtests.py:
     11        * Scripts/webkitpy/webkitport.py:
     12
    1132010-01-07  Andras Becsi  <abecsi@inf.u-szeged.hu>
    214
  • trunk/WebKitTools/Scripts/webkitpy/steps/runtests.py

    r52714 r52989  
    4646        if not self._options.test:
    4747            return
     48
     49        # Run the scripting unit tests first because they're quickest.
     50        self._tool.executive.run_and_throw_if_fail(self.port().run_python_unittests_command())
     51        self._tool.executive.run_and_throw_if_fail(self.port().run_perl_unittests_command())
     52        self._tool.executive.run_and_throw_if_fail(self.port().run_javascriptcore_tests_command())
     53
    4854        args = self.port().run_webkit_tests_command()
    4955        if self._options.non_interactive:
     
    5359            args.append("--quiet")
    5460        self._tool.executive.run_and_throw_if_fail(args)
     61
  • trunk/WebKitTools/Scripts/webkitpy/webkitport.py

    r52701 r52989  
    7272
    7373    @classmethod
     74    def run_javascriptcore_tests_command(cls):
     75        return [cls.script_path("run-javascriptcore-tests")]
     76
     77    @classmethod
    7478    def run_webkit_tests_command(cls):
    7579        return [cls.script_path("run-webkit-tests")]
     80
     81    @classmethod
     82    def run_python_unittests_command(cls):
     83        return [cls.script_path("test-webkitpy")]
     84
     85    @classmethod
     86    def run_perl_unittests_command(cls):
     87        return [cls.script_path("test-webkitperl")]
    7688
    7789
Note: See TracChangeset for help on using the changeset viewer.