Commit 483ee3fa by Kimmo Kinnunen Committed by Commit Bot

Remove ShaderStorageBufferTest test skips for bug 2990, bug is marked fixed

Unskip ShaderStorageBufferTest tests that reference bug angleproject:2990, the bug is marked fixed and the tests pass. Bug: angleproject:2990 Change-Id: I378f648baa1caf44c5e5280c1580abaefcbe6cba Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1742146 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 415bb0cd
...@@ -1824,9 +1824,6 @@ void main() ...@@ -1824,9 +1824,6 @@ void main()
// Test that compond assignment operator for buffer variable is correctly handled. // Test that compond assignment operator for buffer variable is correctly handled.
TEST_P(ShaderStorageBufferTest31, CompoundAssignmentOperator) TEST_P(ShaderStorageBufferTest31, CompoundAssignmentOperator)
{ {
// http://anglebug.com/2990
ANGLE_SKIP_TEST_IF(IsD3D11());
constexpr char kComputeShaderSource[] = constexpr char kComputeShaderSource[] =
R"(#version 310 es R"(#version 310 es
layout (local_size_x=1) in; layout (local_size_x=1) in;
...@@ -1945,9 +1942,6 @@ TEST_P(ShaderStorageBufferTest31, ReadonlyBinaryOperator) ...@@ -1945,9 +1942,6 @@ TEST_P(ShaderStorageBufferTest31, ReadonlyBinaryOperator)
// Test that ssbo as an argument of a function can be translated. // Test that ssbo as an argument of a function can be translated.
TEST_P(ShaderStorageBufferTest31, SSBOAsFunctionArgument) TEST_P(ShaderStorageBufferTest31, SSBOAsFunctionArgument)
{ {
// http://anglebug.com/2990
ANGLE_SKIP_TEST_IF(IsD3D11());
constexpr char kComputeShaderSource[] = constexpr char kComputeShaderSource[] =
R"(#version 310 es R"(#version 310 es
layout(local_size_x = 1) in; layout(local_size_x = 1) in;
...@@ -2006,9 +2000,6 @@ void main(void) ...@@ -2006,9 +2000,6 @@ void main(void)
// Test that ssbo as unary operand works well. // Test that ssbo as unary operand works well.
TEST_P(ShaderStorageBufferTest31, SSBOAsUnaryOperand) TEST_P(ShaderStorageBufferTest31, SSBOAsUnaryOperand)
{ {
// http://anglebug.com/2990
ANGLE_SKIP_TEST_IF(IsD3D11());
constexpr char kComputeShaderSource[] = constexpr char kComputeShaderSource[] =
R"(#version 310 es R"(#version 310 es
layout (local_size_x=1) in; layout (local_size_x=1) in;
......
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