Commit 460a20d5 authored by tonyg@chromium.org's avatar tonyg@chromium.org

[Telemetry] Disable DCHECK crashes in release builds.

Telemetry is designed for performance, not functional testing and it is
currently bearing more of the weight of these failures than the infra can
handle.

NOTRY=True
BUG=

Review URL: https://codereview.chromium.org/322593004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275580 0039d316-1c4b-4281-b951-d872f2087c98
parent 6370163b
......@@ -89,6 +89,15 @@ class ChromeBrowserBackend(browser_backend.BrowserBackend):
args.append('--no-default-browser-check')
args.append('--no-first-run')
# TODO(tonyg): Telemetry runs on release build bots which enable DCHECKs.
# While, we'd really like for Chrome to be DCHECK clean, pragmatically, it
# is far from it and the Telemetry unittests are hitting DCHECKS so often
# that the flakiness is becoming untenable.
#
# We should remove this as soon as we're ready to get serious about the
# DCHECK problem and keep Chrome clean.
args.append('--silent-dump-on-dcheck')
# Turn on GPU benchmarking extension for all runs. The only side effect of
# the extension being on is that render stats are tracked. This is believed
# to be effectively free. And, by doing so here, it avoids us having to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment