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

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

Issue 2262743002: DevTools: Run devtools tests in release mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add flag Created 4 years, 4 months 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
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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 help=("Check to ensure the build is up to date (default).")), 264 help=("Check to ensure the build is up to date (default).")),
265 optparse.make_option( 265 optparse.make_option(
266 "--no-build", 266 "--no-build",
267 dest="build", 267 dest="build",
268 action="store_false", 268 action="store_false",
269 help="Don't check to see if the build is up to date."), 269 help="Don't check to see if the build is up to date."),
270 optparse.make_option( 270 optparse.make_option(
271 "--child-processes", 271 "--child-processes",
272 help="Number of drivers to run in parallel."), 272 help="Number of drivers to run in parallel."),
273 optparse.make_option( 273 optparse.make_option(
274 "--debug-devtools",
pfeldman 2016/08/24 00:36:04 drop it, we have too many flags already.
chenwilliam 2016/08/24 22:53:40 Done.
275 dest="debug_devtools",
276 action="store_true",
277 default=False,
278 help="Run devtools tests in debug mode (not bundled and minified )"),
279 optparse.make_option(
274 "--enable-wptserve", 280 "--enable-wptserve",
275 dest="enable_wptserve", 281 dest="enable_wptserve",
276 action="store_true", 282 action="store_true",
277 default=False, 283 default=False,
278 help="Enable running web-platform-tests using WPTserve instead o f Apache."), 284 help="Enable running web-platform-tests using WPTserve instead o f Apache."),
279 optparse.make_option( 285 optparse.make_option(
280 "--disable-breakpad", 286 "--disable-breakpad",
281 action="store_true", 287 action="store_true",
282 help="Don't use breakpad to symbolize unexpected crashes."), 288 help="Don't use breakpad to symbolize unexpected crashes."),
283 optparse.make_option( 289 optparse.make_option(
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 _log.debug("\t%s", process) 583 _log.debug("\t%s", process)
578 584
579 return run_details 585 return run_details
580 586
581 finally: 587 finally:
582 printer.cleanup() 588 printer.cleanup()
583 589
584 if __name__ == '__main__': 590 if __name__ == '__main__':
585 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr) 591 exit_code = main(sys.argv[1:], sys.stdout, sys.stderr)
586 sys.exit(exit_code) 592 sys.exit(exit_code)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698