| OLD | NEW |
| 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 Loading... |
| 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." |
| OLD | NEW |