Skip to content

Commit 38bb33a

Browse files
Aurora ZhangAngle LUCI CQ
authored andcommitted
Skip MultiviewGPUBound test with no acceleration on Pixel 6
MultiviewGPUBoundBenchmark.Run/vulkan_no_acc_GL_OVR_multiview* tests fail on Pixel 6. Bug: angleproject:463416137 Change-Id: Id4fda2c8ecff27a1cf658dd7aa02297409e5ea80 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/7230429 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Auto-Submit: Aurora Zhang <Aurora.Zhang@arm.com>
1 parent 5ac8def commit 38bb33a

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/tests/perf_tests/MultiviewPerf.cpp

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,17 @@ class MultiviewCPUBoundBenchmark : public MultiviewBenchmark
230230
class MultiviewGPUBoundBenchmark : public MultiviewBenchmark
231231
{
232232
public:
233-
MultiviewGPUBoundBenchmark() : MultiviewBenchmark("MultiviewGPUBoundBenchmark") {}
233+
MultiviewGPUBoundBenchmark() : MultiviewBenchmark("MultiviewGPUBoundBenchmark")
234+
{
235+
if (IsPixel6() &&
236+
GetParam().eglParameters.renderer == EGL_PLATFORM_ANGLE_TYPE_VULKAN_ANGLE &&
237+
GetParam().multiviewOption == MultiviewOption::NoAcceleration)
238+
{
239+
skipTest(
240+
"http://anglebug.com/463416137 Fails on Pixel 6 Vulkan with no "
241+
"acceleration.");
242+
}
243+
}
234244

235245
void initializeBenchmark() override;
236246

0 commit comments

Comments
 (0)