| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright 2012 the V8 project authors. All rights reserved. | 3 # Copyright 2012 the V8 project authors. All rights reserved. |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 for t in s.tests: | 605 for t in s.tests: |
| 606 t.id = test_id | 606 t.id = test_id |
| 607 test_id += 1 | 607 test_id += 1 |
| 608 | 608 |
| 609 if options.cat: | 609 if options.cat: |
| 610 return 0 # We're done here. | 610 return 0 # We're done here. |
| 611 | 611 |
| 612 if options.report: | 612 if options.report: |
| 613 verbose.PrintReport(all_tests) | 613 verbose.PrintReport(all_tests) |
| 614 | 614 |
| 615 if num_tests == 0: | |
| 616 print "No tests to run." | |
| 617 return 0 | |
| 618 | |
| 619 # Run the tests, either locally or distributed on the network. | 615 # Run the tests, either locally or distributed on the network. |
| 620 start_time = time.time() | 616 start_time = time.time() |
| 621 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() | 617 progress_indicator = progress.PROGRESS_INDICATORS[options.progress]() |
| 622 if options.junitout: | 618 if options.junitout: |
| 623 progress_indicator = progress.JUnitTestProgressIndicator( | 619 progress_indicator = progress.JUnitTestProgressIndicator( |
| 624 progress_indicator, options.junitout, options.junittestsuite) | 620 progress_indicator, options.junitout, options.junittestsuite) |
| 625 if options.json_test_results: | 621 if options.json_test_results: |
| 626 progress_indicator = progress.JsonTestProgressIndicator( | 622 progress_indicator = progress.JsonTestProgressIndicator( |
| 627 progress_indicator, options.json_test_results, arch, | 623 progress_indicator, options.json_test_results, arch, |
| 628 MODES[mode]["execution_mode"]) | 624 MODES[mode]["execution_mode"]) |
| (...skipping 26 matching lines...) Expand all Loading... |
| 655 exit_code = runner.Run(options.j) | 651 exit_code = runner.Run(options.j) |
| 656 overall_duration = time.time() - start_time | 652 overall_duration = time.time() - start_time |
| 657 | 653 |
| 658 if options.time: | 654 if options.time: |
| 659 verbose.PrintTestDurations(suites, overall_duration) | 655 verbose.PrintTestDurations(suites, overall_duration) |
| 660 return exit_code | 656 return exit_code |
| 661 | 657 |
| 662 | 658 |
| 663 if __name__ == "__main__": | 659 if __name__ == "__main__": |
| 664 sys.exit(Main()) | 660 sys.exit(Main()) |
| OLD | NEW |