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

Side by Side Diff: webkit/tools/layout_tests/webkitpy/layout_package/failure_finder_test.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
OLDNEW
1 #!/bin/env/python 1 #!/bin/env/python
2 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2006-2009 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 import os 6 import os
7 import zipfile 7 import zipfile
8 8
9 from failure_finder import FailureFinder 9 from failure_finder import FailureFinder
10 10
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 return not match 365 return not match
366 366
367 367
368 if __name__ == "__main__": 368 if __name__ == "__main__":
369 fft = FailureFinderTest() 369 fft = FailureFinderTest()
370 result = fft.runTests() 370 result = fft.runTests()
371 if result: 371 if result:
372 print "All tests passed." 372 print "All tests passed."
373 else: 373 else:
374 print "Not all tests passed." 374 print "Not all tests passed."
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698