Skip to content

Commit

Permalink
Temporarily disable test for GLES
Browse files Browse the repository at this point in the history
  • Loading branch information
bdero committed Dec 11, 2022
1 parent d165f40 commit 4a9acd7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions impeller/scene/scene_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ TEST_P(SceneTest, CuboidUnlit) {
}

TEST_P(SceneTest, GLTFScene) {
if (GetParam() == PlaygroundBackend::kOpenGLES) {
// TODO(bdero): GLES falls over when the scene context is created outside of
// the render callback:
// "Library was collected before a pending pipeline creation
// could finish."
GTEST_SKIP_("Pipeline creation fails for GLES in this test right now.");
}

auto allocator = GetContext()->GetResourceAllocator();

auto mapping =
Expand Down

0 comments on commit 4a9acd7

Please sign in to comment.