| OLD | NEW |
| 1 # Copyright (C) 2010 Google Inc. All rights reserved. | 1 # Copyright (C) 2010 Google Inc. All rights reserved. |
| 2 # Copyright (C) 2010 Gabor Rapcsanyi (rgabor@inf.u-szeged.hu), University of Sze
ged | 2 # Copyright (C) 2010 Gabor Rapcsanyi (rgabor@inf.u-szeged.hu), University of Sze
ged |
| 3 # Copyright (C) 2011 Apple Inc. All rights reserved. | 3 # Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "--add-platform-exceptions", | 116 "--add-platform-exceptions", |
| 117 action="store_true", | 117 action="store_true", |
| 118 default=False, | 118 default=False, |
| 119 help=("Save generated results into the *most-specific-platform*
directory rather " | 119 help=("Save generated results into the *most-specific-platform*
directory rather " |
| 120 "than the *generic-platform* directory")), | 120 "than the *generic-platform* directory")), |
| 121 optparse.make_option( | 121 optparse.make_option( |
| 122 "--additional-driver-flag", | 122 "--additional-driver-flag", |
| 123 "--additional-drt-flag", | 123 "--additional-drt-flag", |
| 124 dest="additional_driver_flag", | 124 dest="additional_driver_flag", |
| 125 action="append", | 125 action="append", |
| 126 default=[], | 126 default=['--enable-slimming-paint-invalidation'], |
| 127 help=("Additional command line flag to pass to the driver. Speci
fy multiple " | 127 help=("Additional command line flag to pass to the driver. Speci
fy multiple " |
| 128 "times to add multiple flags.")), | 128 "times to add multiple flags.")), |
| 129 optparse.make_option( | 129 optparse.make_option( |
| 130 "--additional-expectations", | 130 "--additional-expectations", |
| 131 action="append", | 131 action="append", |
| 132 default=[], | 132 default=[], |
| 133 help=("Path to a test_expectations file that will override previ
ous " | 133 help=("Path to a test_expectations file that will override previ
ous " |
| 134 "expectations. Specify multiple times for multiple sets of
overrides.")), | 134 "expectations. Specify multiple times for multiple sets of
overrides.")), |
| 135 optparse.make_option( | 135 optparse.make_option( |
| 136 "--additional-platform-directory", | 136 "--additional-platform-directory", |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 _log.debug("\t%s", process) | 615 _log.debug("\t%s", process) |
| 616 | 616 |
| 617 return run_details | 617 return run_details |
| 618 | 618 |
| 619 finally: | 619 finally: |
| 620 printer.cleanup() | 620 printer.cleanup() |
| 621 | 621 |
| 622 if __name__ == '__main__': | 622 if __name__ == '__main__': |
| 623 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr) | 623 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr) |
| 624 sys.exit(exit_code) | 624 sys.exit(exit_code) |
| OLD | NEW |