| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 json | 6 import json |
| 7 import logging | 7 import logging |
| 8 import os | 8 import os |
| 9 import re | 9 import re |
| 10 import shutil | 10 import shutil |
| (...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 missing=[], | 823 missing=[], |
| 824 success=[], | 824 success=[], |
| 825 test_cases=[], | 825 test_cases=[], |
| 826 duration=False) | 826 duration=False) |
| 827 | 827 |
| 828 | 828 |
| 829 if __name__ == '__main__': | 829 if __name__ == '__main__': |
| 830 VERBOSE = '-v' in sys.argv | 830 VERBOSE = '-v' in sys.argv |
| 831 logging.basicConfig(level=logging.DEBUG if VERBOSE else logging.ERROR) | 831 logging.basicConfig(level=logging.DEBUG if VERBOSE else logging.ERROR) |
| 832 unittest.main() | 832 unittest.main() |
| OLD | NEW |