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

Unified Diff: media/tools/layout_tests/test_expectations.py

Issue 14316009: Update tools to reflect movement of TestExpectations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix equality test Created 7 years, 8 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 | « media/tools/layout_tests/README ('k') | media/tools/layout_tests/test_expectations_history.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/layout_tests/test_expectations.py
diff --git a/media/tools/layout_tests/test_expectations.py b/media/tools/layout_tests/test_expectations.py
index d8f5948552b8cc9603131b525f98912dddc5a081..410c724a64d7de47d1a86eec57455f03f2f20a5d 100644
--- a/media/tools/layout_tests/test_expectations.py
+++ b/media/tools/layout_tests/test_expectations.py
@@ -8,11 +8,10 @@ import urllib2
from webkitpy.layout_tests.models.test_expectations import *
-# Default Webkit SVN location for chromium test expectation file.
+# Default location for chromium test expectation file.
# TODO(imasaki): support multiple test expectations files.
-DEFAULT_TEST_EXPECTATION_LOCATION = (
- 'http://svn.webkit.org/repository/webkit/trunk/'
- 'LayoutTests/platform/chromium/TestExpectations')
+DEFAULT_TEST_EXPECTATIONS_LOCATION = (
+ 'http://src.chromium.org/blink/trunk/LayoutTests/TestExpectations')
# The following is from test expectation syntax. The detail can be found in
# http://www.chromium.org/developers/testing/webkit-layout-tests#TOC-Test-Expectations
@@ -51,7 +50,7 @@ class TestExpectations(object):
'Platforms': ['SNOWLEOPARD', 'ANDROID'], 'TIMEOUT': True, 'PASS': True}]}
"""
- def __init__(self, url=DEFAULT_TEST_EXPECTATION_LOCATION):
+ def __init__(self, url=DEFAULT_TEST_EXPECTATIONS_LOCATION):
"""Read the test expectation file from the specified URL and parse it.
Args:
« no previous file with comments | « media/tools/layout_tests/README ('k') | media/tools/layout_tests/test_expectations_history.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698