| Index: Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| index d0a52bcebbf64c8ac3d56f715d78334047bfd5bf..3c0338af3dde810813bdb833dd5a8617ebba5148 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| @@ -77,9 +77,8 @@ def main(argv, stdout, stderr):
|
| bot_printer = buildbot_results.BuildBotPrinter(stdout, options.debug_rwt_logging)
|
| bot_printer.print_results(run_details)
|
|
|
| - if options.enable_versioned_results:
|
| - gen_dash_board = GenerateDashBoard(port)
|
| - gen_dash_board.generate()
|
| + gen_dash_board = GenerateDashBoard(port)
|
| + gen_dash_board.generate()
|
|
|
| return run_details.exit_code
|
|
|
| @@ -171,8 +170,6 @@ def parse_args(args):
|
| help="Show all failures in results.html, rather than only regressions"),
|
| optparse.make_option("--clobber-old-results", action="store_true",
|
| default=False, help="Clobbers test results from previous runs."),
|
| - optparse.make_option("--enable-versioned-results", action="store_true",
|
| - default=False, help="Archive the test results for later access."),
|
| optparse.make_option("--smoke", action="store_true",
|
| help="Run just the SmokeTests"),
|
| optparse.make_option("--no-smoke", dest="smoke", action="store_false",
|
|
|