Commit ca140dc0 authored by Brian Sheedy's avatar Brian Sheedy Committed by Commit Bot

Replace uses of LogSymbolizedUnsymbolizedMinidumps

Replaces all uses of LogSymbolizedUnsymbolizedMinidumps with
CollectDebugData, which is functionally identical but the name is more
descriptive of what it actually does.

TBR=crouleau@chromium.org

Bug: 1025034
Change-Id: I1cbb2702efec1e608622ca0878399f5406a2775d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1937854Reviewed-by: default avatarBrian Sheedy <bsheedy@chromium.org>
Reviewed-by: default avatarCaleb Rouleau <crouleau@chromium.org>
Commit-Queue: Brian Sheedy <bsheedy@chromium.org>
Cr-Commit-Position: refs/heads/master@{#720640}
parent 21f2a773
......@@ -199,7 +199,7 @@ class GpuIntegrationTest(
# stacks could slow down the tests' running time unacceptably.
# We also don't do this if the browser failed to startup.
if self.browser is not None:
self.browser.LogSymbolizedUnsymbolizedMinidumps(logging.ERROR)
self.browser.CollectDebugData(logging.ERROR)
# This failure might have been caused by a browser or renderer
# crash, so restart the browser to make sure any state doesn't
# propagate to the next test iteration.
......
......@@ -41,7 +41,7 @@ class BrowserMinidumpTest(tab_test_case.TabTestCase):
# This has failed to repro either locally or on swarming, so dump extra
# information if this is hit on the bots.
if len(all_unsymbolized_paths) != 1:
self._browser.LogSymbolizedUnsymbolizedMinidumps(logging.ERROR)
self._browser.CollectDebugData(logging.ERROR)
self.assertTrue(len(all_unsymbolized_paths) == 1)
# Now symbolize that minidump and make sure there are no longer any present
......@@ -77,7 +77,7 @@ class BrowserMinidumpTest(tab_test_case.TabTestCase):
# This has failed to repro either locally or on swarming, so dump extra
# information if this is hit on the bots.
if len(all_paths) != 1:
self._browser.LogSymbolizedUnsymbolizedMinidumps(logging.ERROR)
self._browser.CollectDebugData(logging.ERROR)
self.assertEquals(len(all_paths), 1)
self.assertEqual(all_paths[0], first_crash_path)
all_unsymbolized_paths = self._browser.GetAllUnsymbolizedMinidumpPaths()
......
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