Changeset 90079 in webkit


Ignore:
Timestamp:
Jun 29, 2011 7:02:04 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-06-29 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

new-run-webkit-tests should tell you when it creates new expectations
https://bugs.webkit.org/show_bug.cgi?id=63675

Unforunately, this patch creates a bunch of test-webkitpy spam because
we don't understand how Python logging works well enough to stop the
spam. :(

  • Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r90078 r90079  
     12011-06-29  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        new-run-webkit-tests should tell you when it creates new expectations
     6        https://bugs.webkit.org/show_bug.cgi?id=63675
     7
     8        Unforunately, this patch creates a bunch of test-webkitpy spam because
     9        we don't understand how Python logging works well enough to stop the
     10        spam.  :(
     11
     12        * Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
     13
    1142011-06-29  Eric Seidel  <eric@webkit.org>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py

    r90055 r90079  
    188188            fs.maybe_make_directory(output_dir)
    189189            output_path = fs.join(output_dir, output_file)
    190             _log.debug('Writing new baseline result "%s"' % output_path)
    191190        else:
    192191            output_path = port.expected_filename(self._filename, modifier)
    193             _log.debug('Resetting baseline result "%s"' % output_path)
     192
     193        result_name = fs.relpath(output_path, port.layout_tests_dir())
     194        _log.info('Writing new expected result "%s"' % result_name)
    194195
    195196        port.update_baseline(output_path, data)
Note: See TracChangeset for help on using the changeset viewer.