| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 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 """Toolbox to manage all the json files in this directory. | 6 """Toolbox to manage all the json files in this directory. |
| 7 | 7 |
| 8 It can reformat them in their canonical format or ensures they are well | 8 It can reformat them in their canonical format or ensures they are well |
| 9 formatted. | 9 formatted. |
| 10 """ | 10 """ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'Chromium OS (valgrind)(2)', | 76 'Chromium OS (valgrind)(2)', |
| 77 'Chromium OS (valgrind)(3)', | 77 'Chromium OS (valgrind)(3)', |
| 78 'Chromium OS (valgrind)(4)', | 78 'Chromium OS (valgrind)(4)', |
| 79 'Chromium OS (valgrind)(5)', | 79 'Chromium OS (valgrind)(5)', |
| 80 'Chromium OS (valgrind)(6)', | 80 'Chromium OS (valgrind)(6)', |
| 81 'Linux Tests (valgrind)(1)', | 81 'Linux Tests (valgrind)(1)', |
| 82 'Linux Tests (valgrind)(2)', | 82 'Linux Tests (valgrind)(2)', |
| 83 'Linux Tests (valgrind)(3)', | 83 'Linux Tests (valgrind)(3)', |
| 84 'Linux Tests (valgrind)(4)', | 84 'Linux Tests (valgrind)(4)', |
| 85 'Linux Tests (valgrind)(5)', | 85 'Linux Tests (valgrind)(5)', |
| 86 'Windows Browser (DrMemory full) (1)', |
| 87 'Windows Browser (DrMemory full) (2)', |
| 88 'Windows Browser (DrMemory full) (3)', |
| 89 'Windows Browser (DrMemory full) (4)', |
| 90 'Windows Browser (DrMemory full) (5)', |
| 91 'Windows Browser (DrMemory full) (6)', |
| 92 'Windows Browser (DrMemory full) (7)', |
| 93 'Windows Browser (DrMemory full) (8)', |
| 94 'Windows Browser (DrMemory full) (9)', |
| 95 'Windows Browser (DrMemory full) (10)', |
| 96 'Windows Browser (DrMemory full) (11)', |
| 97 'Windows Browser (DrMemory full) (12)', |
| 98 'Windows Content Browser (DrMemory)', |
| 99 'Windows Content Browser (DrMemory full) (1)', |
| 100 'Windows Content Browser (DrMemory full) (2)', |
| 101 'Windows Content Browser (DrMemory full) (3)', |
| 102 'Windows Content Browser (DrMemory full) (4)', |
| 103 'Windows Content Browser (DrMemory full) (5)', |
| 104 'Windows Content Browser (DrMemory full) (6)', |
| 86 'Windows Unit (DrMemory full) (1)', | 105 'Windows Unit (DrMemory full) (1)', |
| 87 'Windows Unit (DrMemory full) (2)', | 106 'Windows Unit (DrMemory full) (2)', |
| 88 'Windows Unit (DrMemory full) (3)', | 107 'Windows Unit (DrMemory full) (3)', |
| 89 'Windows Unit (DrMemory full) (4)', | 108 'Windows Unit (DrMemory full) (4)', |
| 90 'Windows Unit (DrMemory full) (5)', | 109 'Windows Unit (DrMemory full) (5)', |
| 91 'Windows Unit (DrMemory full) (6)', | 110 'Windows Unit (DrMemory full) (6)', |
| 92 'Windows Unit (DrMemory full) (7)', | 111 'Windows Unit (DrMemory full) (7)', |
| 93 'Windows Unit (DrMemory full) (8)', | 112 'Windows Unit (DrMemory full) (8)', |
| 94 'Windows Unit (DrMemory full) (9)', | 113 'Windows Unit (DrMemory full) (9)', |
| 95 'Windows Unit (DrMemory full) (10)', | 114 'Windows Unit (DrMemory full) (10)', |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 elif args.mode == 'remaining': | 387 elif args.mode == 'remaining': |
| 369 print_remaining(args.test_name, tests_location) | 388 print_remaining(args.test_name, tests_location) |
| 370 return result | 389 return result |
| 371 except Error as e: | 390 except Error as e: |
| 372 sys.stderr.write('%s\n' % e) | 391 sys.stderr.write('%s\n' % e) |
| 373 return 1 | 392 return 1 |
| 374 | 393 |
| 375 | 394 |
| 376 if __name__ == "__main__": | 395 if __name__ == "__main__": |
| 377 sys.exit(main()) | 396 sys.exit(main()) |
| OLD | NEW |