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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 tests_by_dir[directory] = [] | 342 tests_by_dir[directory] = [] |
343 tests_by_dir[directory].append((test_file, | 343 tests_by_dir[directory].append((test_file, |
344 path_utils.FilenameToUri(test_file))) | 344 path_utils.FilenameToUri(test_file))) |
345 | 345 |
346 # Sort by the number of tests in the dir so that the ones with the most | 346 # Sort by the number of tests in the dir so that the ones with the most |
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 http_tests = None |
352 for directory in tests_by_dir: | 353 for directory in tests_by_dir: |
353 test_list = tests_by_dir[directory] | 354 test_list = tests_by_dir[directory] |
354 # Keep the tests in alphabetical order. | 355 # Keep the tests in alphabetical order. |
355 # TODO: Remove once tests are fixed so they can be run in any order. | 356 # TODO: Remove once tests are fixed so they can be run in any order. |
356 test_list.reverse() | 357 test_list.reverse() |
357 test_list_tuple = (directory, test_list) | 358 test_list_tuple = (directory, test_list) |
358 if directory == 'LayoutTests' + os.sep + 'http': | 359 if directory == 'LayoutTests' + os.sep + 'http': |
359 http_tests = test_list_tuple | 360 http_tests = test_list_tuple |
360 else: | 361 else: |
361 test_lists.append(test_list_tuple) | 362 test_lists.append(test_list_tuple) |
362 test_lists.sort(lambda a, b: cmp(len(b), len(a))) | 363 test_lists.sort(lambda a, b: cmp(len(b), len(a))) |
363 | 364 |
364 # Put the http tests first. There are only a couple hundred of them, but | 365 # 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 # 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 # of tests doesn't accurately capture how long they take to run. |
367 test_lists.insert(0, http_tests) | 368 if http_tests: |
| 369 test_lists.insert(0, http_tests) |
368 | 370 |
369 filename_queue = Queue.Queue() | 371 filename_queue = Queue.Queue() |
370 for item in test_lists: | 372 for item in test_lists: |
371 filename_queue.put(item) | 373 filename_queue.put(item) |
372 return filename_queue | 374 return filename_queue |
373 | 375 |
374 def _GetTestShellArgs(self, index): | 376 def _GetTestShellArgs(self, index): |
375 """Returns the tuple of arguments for tests and for test_shell.""" | 377 """Returns the tuple of arguments for tests and for test_shell.""" |
376 shell_args = [] | 378 shell_args = [] |
377 test_args = test_type_base.TestArguments() | 379 test_args = test_type_base.TestArguments() |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
960 option_parser.add_option("", "--run-part", | 962 option_parser.add_option("", "--run-part", |
961 default=None, | 963 default=None, |
962 help=("Run a specified part (n:m), the nth of m" | 964 help=("Run a specified part (n:m), the nth of m" |
963 " parts, of the layout tests")) | 965 " parts, of the layout tests")) |
964 option_parser.add_option("", "--batch-size", | 966 option_parser.add_option("", "--batch-size", |
965 default=None, | 967 default=None, |
966 help=("Run a the tests in batches (n), after every " | 968 help=("Run a the tests in batches (n), after every " |
967 "n tests, the test shell is relaunched.")) | 969 "n tests, the test shell is relaunched.")) |
968 options, args = option_parser.parse_args() | 970 options, args = option_parser.parse_args() |
969 main(options, args) | 971 main(options, args) |
OLD | NEW |