| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/print_layout_test_times.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/print_layout_test_times.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/print_layout_test_times.py
|
| index 442ac84db542f3fc27897e941765d82d1561f7cc..7b69879b7463bb2b78fde6c1c3ffd4be2419885d 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/print_layout_test_times.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/print_layout_test_times.py
|
| @@ -38,7 +38,7 @@ def main(host, argv):
|
| parser.add_option('-f', '--forward', action='store', type='int',
|
| help='group times by first N directories of test')
|
| parser.add_option('-b', '--backward', action='store', type='int',
|
| - help='group times by last N directories of test')
|
| + help='group times by last N directories of test')
|
| parser.add_option('--fastest', action='store', type='float',
|
| help='print a list of tests that will take N % of the time')
|
|
|
| @@ -107,7 +107,7 @@ def print_fastest(host, port, options, times):
|
| while tests_by_time and total_so_far <= budget:
|
| test = tests_by_time.pop(0)
|
| test_time = times[test]
|
| - # Make sure test time > 0 so we don't include tests that are skipped.
|
| + # Make sure test time > 0 so we don't include tests that are skipped.
|
| if test_time and total_so_far + test_time <= budget:
|
| fast_tests_by_key[key].append(test)
|
| total_so_far += test_time
|
|
|