mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2025-12-26 17:25:04 +01:00
Parse additional line introduced in the microdump format and containing the GPU infromation in the following format:
G GL_VERSION|GL_VENDOR|GL_RENDERER. The GPU version, vendor and renderer are extracted during microdump parsing and populated in the appropriate fields in the SystemInfo struct. This is to match the changes introduced in crrev.com/1343713002 and crrev.com/1334473003 BUG=chromium:536769 R=primiano@chromium.org Review URL: https://codereview.chromium.org/1678463002 .
This commit is contained in:
parent
a8f79b0fde
commit
df280bb631
11 changed files with 56 additions and 1 deletions
|
|
@ -159,6 +159,10 @@ TEST_F(MicrodumpProcessorTest, TestProcessArm) {
|
|||
|
||||
ASSERT_EQ(6U, state.modules()->module_count());
|
||||
ASSERT_EQ("arm", state.system_info()->cpu);
|
||||
ASSERT_EQ("OpenGL ES 3.0 V@104.0 AU@ (GIT@Id3510ff6dc)",
|
||||
state.system_info()->gl_version);
|
||||
ASSERT_EQ("Qualcomm", state.system_info()->gl_vendor);
|
||||
ASSERT_EQ("Adreno (TM) 330", state.system_info()->gl_renderer);
|
||||
ASSERT_EQ("OS VERSION INFO", state.system_info()->os_version);
|
||||
ASSERT_EQ(8U, state.threads()->at(0)->frames()->size());
|
||||
ASSERT_EQ("MicrodumpWriterTest_Setup_Test::TestBody",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue