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

Unified Diff: webkit/tools/layout_tests/layout_package/test_expectations.py

Issue 56117: Fix calculation of whether we've seen a more precise path for a given test... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/layout_package/test_expectations.py
===================================================================
--- webkit/tools/layout_tests/layout_package/test_expectations.py (revision 12821)
+++ webkit/tools/layout_tests/layout_package/test_expectations.py (working copy)
@@ -383,7 +383,7 @@
return True
# Check if we've already seen a more precise path.
- return prev_base_path.startswith(test_list_path)
+ return prev_base_path.startswith(os.path.normpath(test_list_path))
def _AddError(self, lineno, msg, path):
self._errors.append('\nLine:%s %s\n%s' % (lineno, msg, path))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698