Vulkan: Lift suppressions because of vulkan validation
layer regression

Bug: angleproject:2484

Change-Id: Ib46caa8924c7815154beeb46a291520e57b5cc4f
Reviewed-on: https://chromium-review.googlesource.com/1023833
Reviewed-by: Jamie Madill <jmadill@chromium.org>
Commit-Queue: Luc Ferron <lucferron@chromium.org>
diff --git a/src/tests/deqp_support/deqp_gles2_test_expectations.txt b/src/tests/deqp_support/deqp_gles2_test_expectations.txt
index 0052830..2d9cf9c 100644
--- a/src/tests/deqp_support/deqp_gles2_test_expectations.txt
+++ b/src/tests/deqp_support/deqp_gles2_test_expectations.txt
@@ -346,12 +346,3 @@
 2161 VULKAN : dEQP-GLES2.functional.default_vertex_attrib.* = SKIP
 2161 VULKAN : dEQP-GLES2.functional.lifetime.* = SKIP
 2161 VULKAN : dEQP-GLES2.functional.debug_marker.* = SKIP
-
-// TODO(lucferron) This is a regression tracked in http://anglebug.com/2484
-2484 VULKAN WIN LINUX ANDROID : dEQP-GLES2.functional.color_clear.short_scissored_rgb = SKIP
-2484 VULKAN WIN LINUX ANDROID : dEQP-GLES2.functional.color_clear.scissored_rgb = SKIP
-2484 VULKAN WIN LINUX ANDROID : dEQP-GLES2.functional.color_clear.scissored_rgba = SKIP
-2484 VULKAN : dEQP-GLES2.functional.depth_stencil_clear.depth_scissored = SKIP
-2484 VULKAN : dEQP-GLES2.functional.depth_stencil_clear.stencil_scissored = SKIP
-2484 VULKAN : dEQP-GLES2.functional.depth_stencil_clear.depth_stencil_scissored = SKIP
-2484 VULKAN : dEQP-GLES2.functional.fragment_ops.scissor.clear_color = SKIP
diff --git a/src/tests/gl_tests/ClearTest.cpp b/src/tests/gl_tests/ClearTest.cpp
index 6d7b8ef..aee323b 100644
--- a/src/tests/gl_tests/ClearTest.cpp
+++ b/src/tests/gl_tests/ClearTest.cpp
@@ -107,10 +107,6 @@
 
 TEST_P(ClearTest, ClearIssue)
 {
-    // This test seems to triggere flaky validation error in Vulkan.
-    // TODO(lucferron): Re-enable when test is fixed. http://anglebug.com/2484
-    ANGLE_SKIP_TEST_IF(IsVulkan());
-
     glEnable(GL_DEPTH_TEST);
     glDepthFunc(GL_LEQUAL);
 
@@ -408,9 +404,6 @@
 // Simple scissored clear.
 TEST_P(ScissoredClearTest, BasicScissoredColorClear)
 {
-    // TODO(lucferron) This is a regression tracked in http://anglebug.com/2484
-    ANGLE_SKIP_TEST_IF(IsVulkan());
-
     const int w     = getWindowWidth();
     const int h     = getWindowHeight();
     const int whalf = w >> 1;