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

Side by Side Diff: webkit/tools/layout_tests/webkitpy/update_expectations_from_dashboard_unittest.py

Issue 545145: Move the layout test scripts into a 'webkitpy' subdirectory in preparation... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: try to de-confuse svn and the try bots Created 10 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/tools/layout_tests/webkitpy/update_expectations_from_dashboard.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Unittests to make sure we generate and update the expected-*.txt files 6 """Unittests to make sure we generate and update the expected-*.txt files
7 properly after running layout tests.""" 7 properly after running layout tests."""
8 8
9 import os 9 import os
10 import sys 10 import sys
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 ########################################################################### 344 ###########################################################################
345 # Helper functions 345 # Helper functions
346 346
347 def updateExpectations(self, expectations, updates, expected_results): 347 def updateExpectations(self, expectations, updates, expected_results):
348 results = update_expectations_from_dashboard.UpdateExpectations( 348 results = update_expectations_from_dashboard.UpdateExpectations(
349 expectations, updates) 349 expectations, updates)
350 self.assertEqual(expected_results, results) 350 self.assertEqual(expected_results, results)
351 351
352 if '__main__' == __name__: 352 if '__main__' == __name__:
353 unittest.main() 353 unittest.main()
OLDNEW
« no previous file with comments | « webkit/tools/layout_tests/webkitpy/update_expectations_from_dashboard.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698