summaryrefslogtreecommitdiffstats
path: root/ppapi/native_client
diff options
context:
space:
mode:
authormseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-16 23:49:42 +0000
committermseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-16 23:49:42 +0000
commite1d44c6e9928357c27afb472a3f9e36075ff9337 (patch)
tree0ae0917f858a0e671f200ac0bfc024a38fb9b0b0 /ppapi/native_client
parent74b123ad24bc3f9c6b68dd064a001123cfbabcd9 (diff)
downloadchromium_src-e1d44c6e9928357c27afb472a3f9e36075ff9337.zip
chromium_src-e1d44c6e9928357c27afb472a3f9e36075ff9337.tar.gz
chromium_src-e1d44c6e9928357c27afb472a3f9e36075ff9337.tar.bz2
Breakpad: Enable more logging in crash_service to debug flaky failures on Windows
Two things are needed to get crash_service's VLOG(1) messages sent to stderr: * Pass --v=1 * Enable "SYSTEM_DEBUG_LOG" in InitLogging() Without these steps, only higher verbosity messages get sent to stderr. Note that crash_service's stderr works if stderr is a pipe but not if it's a Windows console. On a Buildbot slave, though, stderr is a pipe. BUG=169394 TEST=run_breakpad_browser_process_crash_test in nacl_integration Review URL: https://codereview.chromium.org/11881043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177271 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rwxr-xr-xppapi/native_client/tests/breakpad_crash_test/crash_dump_tester.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ppapi/native_client/tests/breakpad_crash_test/crash_dump_tester.py b/ppapi/native_client/tests/breakpad_crash_test/crash_dump_tester.py
index 5e7484f4..cc3d14b 100755
--- a/ppapi/native_client/tests/breakpad_crash_test/crash_dump_tester.py
+++ b/ppapi/native_client/tests/breakpad_crash_test/crash_dump_tester.py
@@ -42,6 +42,7 @@ def StartCrashService(browser_path, dumps_dir, windows_pipe_name,
# Find crash_service.exe relative to chrome.exe. This is a bit icky.
browser_dir = os.path.dirname(browser_path)
proc = subprocess.Popen([os.path.join(browser_dir, crash_service_exe),
+ '--v=1', # Verbose output for debugging failures
'--dumps-dir=%s' % dumps_dir,
'--pipe-name=%s' % windows_pipe_name])