| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 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 """ Test runner for Mojom """ | 6 """ Test runner for Mojom """ |
| 7 | 7 |
| 8 import subprocess | 8 import subprocess |
| 9 import sys | 9 import sys |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 errors += TestMojom('module_tests.py', ['--test']) | 26 errors += TestMojom('module_tests.py', ['--test']) |
| 27 errors += TestMojom('pack_tests.py', ['--test']) | 27 errors += TestMojom('pack_tests.py', ['--test']) |
| 28 | 28 |
| 29 if errors: | 29 if errors: |
| 30 print '\nFailed tests.' | 30 print '\nFailed tests.' |
| 31 return min(errors, 127) # Make sure the return value doesn't "wrap". | 31 return min(errors, 127) # Make sure the return value doesn't "wrap". |
| 32 | 32 |
| 33 | 33 |
| 34 if __name__ == '__main__': | 34 if __name__ == '__main__': |
| 35 sys.exit(main(sys.argv[1:])) | 35 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |