Changeset 57442 in webkit


Ignore:
Timestamp:
Apr 10, 2010 11:05:28 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-10 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

new-run-webkit-tests should store results to a directory under the build tree
https://bugs.webkit.org/show_bug.cgi?id=37380

  • Scripts/webkitpy/layout_tests/port/webkit.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57440 r57442  
     12010-04-10  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        new-run-webkit-tests should store results to a directory under the build tree
     6        https://bugs.webkit.org/show_bug.cgi?id=37380
     7
     8        * Scripts/webkitpy/layout_tests/port/webkit.py:
     9
    1102010-04-10  Daniel Bates  <dbates@rim.com>
    211
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/webkit.py

    r57437 r57442  
    173173
    174174    def results_directory(self):
    175         # FIXME: Why do we say chromium here?  Maybe "new-run-webkit-tests-"?
    176         return ('/tmp/run-chromium-webkit-tests-' +
    177                 self._options.results_directory)
     175        # Results are store relative to the built products to make it easy
     176        # to have multiple copies of webkit checked out and built.
     177        return self._build_path(self._options.results_directory)
    178178
    179179    def setup_test_run(self):
Note: See TracChangeset for help on using the changeset viewer.