Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(497)

Unified Diff: webkit/tools/layout_tests/test_types/test_type_base.py

Issue 346018: 1. Show crash stacks in run_webkit_tests.py stdio... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/tools/layout_tests/test_types/test_type_base.py
===================================================================
--- webkit/tools/layout_tests/test_types/test_type_base.py (revision 30488)
+++ webkit/tools/layout_tests/test_types/test_type_base.py (working copy)
@@ -102,22 +102,6 @@
path_utils.RelativeTestFilename(filename))
return os.path.splitext(output_filename)[0] + modifier
- def RelativeOutputFilename(self, filename, modifier):
- """Returns a relative filename inside the output dir that contains
- modifier.
-
- For example, if filename is fast\dom\foo.html and modifier is
- "-expected.txt", the return value is fast\dom\foo-expected.txt
-
- Args:
- filename: relative filename to test file
- modifier: a string to replace the extension of filename with
-
- Return:
- The relative windows path to the output filename
- """
- return os.path.splitext(filename)[0] + modifier
-
def CompareOutput(self, filename, proc, output, test_args, target):
"""Method that compares the output from the test with the expected value.

Powered by Google App Engine
This is Rietveld 408576698