Title: [90079] trunk/Tools
- Revision
- 90079
- Author
- [email protected]
- Date
- 2011-06-29 19:02:04 -0700 (Wed, 29 Jun 2011)
Log Message
2011-06-29 Adam Barth <[email protected]>
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:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (90078 => 90079)
--- trunk/Tools/ChangeLog 2011-06-30 01:48:44 UTC (rev 90078)
+++ trunk/Tools/ChangeLog 2011-06-30 02:02:04 UTC (rev 90079)
@@ -1,3 +1,16 @@
+2011-06-29 Adam Barth <[email protected]>
+
+ 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:
+
2011-06-29 Eric Seidel <[email protected]>
Reviewed by Adam Barth.
Modified: trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py (90078 => 90079)
--- trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py 2011-06-30 01:48:44 UTC (rev 90078)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py 2011-06-30 02:02:04 UTC (rev 90079)
@@ -187,11 +187,12 @@
"-expected" + modifier)
fs.maybe_make_directory(output_dir)
output_path = fs.join(output_dir, output_file)
- _log.debug('Writing new baseline result "%s"' % output_path)
else:
output_path = port.expected_filename(self._filename, modifier)
- _log.debug('Resetting baseline result "%s"' % output_path)
+ result_name = fs.relpath(output_path, port.layout_tests_dir())
+ _log.info('Writing new expected result "%s"' % result_name)
+
port.update_baseline(output_path, data)
def _handle_error(self, driver_output, reference_filename=None):
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes