Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

Issue 2497193002: Reland of wptserve: Enable WPTServe by default. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 default=True, 258 default=True,
259 help=("Check to ensure the build is up to date (default).")), 259 help=("Check to ensure the build is up to date (default).")),
260 optparse.make_option( 260 optparse.make_option(
261 "--no-build", 261 "--no-build",
262 dest="build", 262 dest="build",
263 action="store_false", 263 action="store_false",
264 help="Don't check to see if the build is up to date."), 264 help="Don't check to see if the build is up to date."),
265 optparse.make_option( 265 optparse.make_option(
266 "--child-processes", 266 "--child-processes",
267 help="Number of drivers to run in parallel."), 267 help="Number of drivers to run in parallel."),
268 # TODO(tkent): Remove --enable-wptserve.
268 optparse.make_option( 269 optparse.make_option(
269 "--enable-wptserve", 270 "--enable-wptserve",
270 dest="enable_wptserve", 271 dest="enable_wptserve",
271 action="store_true", 272 action="store_true",
272 default=False, 273 default=True,
273 help="Enable running web-platform-tests using WPTserve instead o f Apache."), 274 help="Enable running web-platform-tests using WPTserve instead o f Apache."),
274 optparse.make_option( 275 optparse.make_option(
275 "--disable-breakpad", 276 "--disable-breakpad",
276 action="store_true", 277 action="store_true",
277 help="Don't use breakpad to symbolize unexpected crashes."), 278 help="Don't use breakpad to symbolize unexpected crashes."),
278 optparse.make_option( 279 optparse.make_option(
279 "--driver-logging", 280 "--driver-logging",
280 action="store_true", 281 action="store_true",
281 help="Print detailed logging of the driver/content_shell"), 282 help="Print detailed logging of the driver/content_shell"),
282 optparse.make_option( 283 optparse.make_option(
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 _log.debug("\t%s", process) 588 _log.debug("\t%s", process)
588 589
589 return run_details 590 return run_details
590 591
591 finally: 592 finally:
592 printer.cleanup() 593 printer.cleanup()
593 594
594 if __name__ == '__main__': 595 if __name__ == '__main__':
595 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr) 596 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr)
596 sys.exit(exit_code) 597 sys.exit(exit_code)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698