OLD | NEW |
1 #!/bin/env python | 1 #!/bin/env python |
2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2006-2008 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 """Run layout tests using the test_shell. | 6 """Run layout tests using the test_shell. |
7 | 7 |
8 This is a port of the existing webkit test script run-webkit-tests. | 8 This is a port of the existing webkit test script run-webkit-tests. |
9 | 9 |
10 The TestRunner class runs a series of tests (TestType interface) against a set | 10 The TestRunner class runs a series of tests (TestType interface) against a set |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 # tests get run first in order to maximize parallelization. Number of tests | 347 # tests get run first in order to maximize parallelization. Number of tests |
348 # is a good enough, but not perfect, approximation of how long that set of | 348 # is a good enough, but not perfect, approximation of how long that set of |
349 # tests will take to run. We can't just use a PriorityQueue until we move | 349 # tests will take to run. We can't just use a PriorityQueue until we move |
350 # to Python 2.6. | 350 # to Python 2.6. |
351 test_lists = [] | 351 test_lists = [] |
352 for directory in tests_by_dir: | 352 for directory in tests_by_dir: |
353 test_list = tests_by_dir[directory] | 353 test_list = tests_by_dir[directory] |
354 # Keep the tests in alphabetical order. | 354 # Keep the tests in alphabetical order. |
355 # TODO: Remove once tests are fixed so they can be run in any order. | 355 # TODO: Remove once tests are fixed so they can be run in any order. |
356 test_list.reverse() | 356 test_list.reverse() |
357 test_lists.append((directory, test_list)) | 357 test_list_tuple = (directory, test_list) |
| 358 if directory == 'LayoutTests' + os.sep + 'http': |
| 359 http_tests = test_list_tuple |
| 360 else: |
| 361 test_lists.append(test_list_tuple) |
358 test_lists.sort(lambda a, b: cmp(len(b), len(a))) | 362 test_lists.sort(lambda a, b: cmp(len(b), len(a))) |
359 | 363 |
| 364 # Put the http tests first. There are only a couple hundred of them, but |
| 365 # each http test takes a very long time to run, so sorting by the number |
| 366 # of tests doesn't accurately capture how long they take to run. |
| 367 test_lists.insert(0, http_tests) |
| 368 |
360 filename_queue = Queue.Queue() | 369 filename_queue = Queue.Queue() |
361 for item in test_lists: | 370 for item in test_lists: |
362 filename_queue.put(item) | 371 filename_queue.put(item) |
363 return filename_queue | 372 return filename_queue |
364 | 373 |
365 def _GetTestShellArgs(self, index): | 374 def _GetTestShellArgs(self, index): |
366 """Returns the tuple of arguments for tests and for test_shell.""" | 375 """Returns the tuple of arguments for tests and for test_shell.""" |
367 shell_args = [] | 376 shell_args = [] |
368 test_args = test_type_base.TestArguments() | 377 test_args = test_type_base.TestArguments() |
369 if not self._options.no_pixel_tests: | 378 if not self._options.no_pixel_tests: |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
951 option_parser.add_option("", "--run-part", | 960 option_parser.add_option("", "--run-part", |
952 default=None, | 961 default=None, |
953 help=("Run a specified part (n:m), the nth of m" | 962 help=("Run a specified part (n:m), the nth of m" |
954 " parts, of the layout tests")) | 963 " parts, of the layout tests")) |
955 option_parser.add_option("", "--batch-size", | 964 option_parser.add_option("", "--batch-size", |
956 default=None, | 965 default=None, |
957 help=("Run a the tests in batches (n), after every " | 966 help=("Run a the tests in batches (n), after every " |
958 "n tests, the test shell is relaunched.")) | 967 "n tests, the test shell is relaunched.")) |
959 options, args = option_parser.parse_args() | 968 options, args = option_parser.parse_args() |
960 main(options, args) | 969 main(options, args) |
OLD | NEW |