Changeset 57451 in webkit


Ignore:
Timestamp:
Apr 11, 2010 11:43:03 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-11 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Fix typo in log path for AbstractQueue
https://bugs.webkit.org/show_bug.cgi?id=37414

  • Scripts/webkitpy/tool/commands/queues.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
Location:
trunk/WebKitTools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57450 r57451  
     12010-04-11  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix typo in log path for AbstractQueue
     6        https://bugs.webkit.org/show_bug.cgi?id=37414
     7
     8        * Scripts/webkitpy/tool/commands/queues.py:
     9        * Scripts/webkitpy/tool/commands/queues_unittest.py:
     10
    1112010-04-11  Adam Barth  <abarth@webkit.org>
    212
  • trunk/WebKitTools/Scripts/webkitpy/tool/commands/queues.py

    r57432 r57451  
    7777
    7878    def _log_directory(self):
    79         return "%s-logs"
     79        return "%s-logs" % self.name
    8080
    8181    # QueueEngineDelegate methods
  • trunk/WebKitTools/Scripts/webkitpy/tool/commands/queues_unittest.py

    r57424 r57451  
    6565        self._assert_log_progress_output(["1","2","3"], "3 patches in test-queue [1, 2, 3]\n")
    6666        self._assert_log_progress_output([1], "1 patch in test-queue [1]\n")
     67
     68    def test_log_directory(self):
     69        self.assertEquals(TestQueue()._log_directory(), "test-queue-logs")
    6770
    6871    def _assert_run_webkit_patch(self, run_args):
Note: See TracChangeset for help on using the changeset viewer.