Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
This repository was archived by the owner on Dec 3, 2019. It is now read-only.

[traceviewer] Test failures when --enable-skia-benchmarking set #4640

@hsheth2

Description

@hsheth2

When Chrome or Chromium is started with the --enable-skia-benchmarking flag set, two of the tests fail.

tracing.ui.extras.chrome.cc.picture_ops_list_view_test.instantiate  failed (1.04ms) 
TypeError: Cannot read property 'objects' of undefined
    at TestCase.testFn_ (http://127.0.0.1:8003/tracing/ui/extras/chrome/cc/picture_ops_list_view_test.html:28:24)
    at TestCase.run (http://127.0.0.1:8003/tracing/base/unittest/test_case.html:84:19)
    at TestRunner.<anonymous> (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:235:48)
    at new Promise (<anonymous>)
    at TestRunner.runCurrentTestCase_ (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:232:14)
    at TestRunner.runOneTestCase_ (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:180:12)
    at http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:137:43

tracing.ui.extras.chrome.cc.picture_ops_list_view_test.selection  failed (0.67ms) 
TypeError: Cannot read property 'objects' of undefined
    at TestCase.testFn_ (http://127.0.0.1:8003/tracing/ui/extras/chrome/cc/picture_ops_list_view_test.html:42:24)
    at TestCase.run (http://127.0.0.1:8003/tracing/base/unittest/test_case.html:84:19)
    at TestRunner.<anonymous> (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:235:48)
    at new Promise (<anonymous>)
    at TestRunner.runCurrentTestCase_ (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:232:14)
    at TestRunner.runOneTestCase_ (http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:180:12)
    at http://127.0.0.1:8003/tracing/base/unittest/test_runner.html:137:43

My suspicion is that the tests effectively are not run unless --enable-skia-benchmarking is set, due to an early check and return:

if (!tr.e.cc.PictureSnapshot.CanRasterize()) return;

There is also be an issue in the picture_test. It appears that the undefined check is not enough to distinguish between the getOps being unavailable and incorrectly returning a falsy value. If we replaced that if statement with if (!tr.e.cc.PictureSnapshot.CanGetOps()) return;, then that test also fails when --enable-skia-benchmarking is set.

Tested in Chrome Version 75.0.3770.142 (Official Build) (64-bit) and Chromium Version 75.0.3770.0 (Developer Build) custom (64-bit).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions