Revert "Suppress some failing end2end_tests on Intel."

This reverts commit 7208f6994cf7d810c2226965362aad43d2a66f53.

Still some failures on Intel, requires a slightly different solution.

BUG=589851

Change-Id: I6ac6599249e9e0f6319c917e04734cd48ca9274d
Reviewed-on: https://chromium-review.googlesource.com/329734
Reviewed-by: Jamie Madill <jmadill@chromium.org>
diff --git a/src/tests/gl_tests/BlendMinMaxTest.cpp b/src/tests/gl_tests/BlendMinMaxTest.cpp
index ef1ba26..d2f9036 100644
--- a/src/tests/gl_tests/BlendMinMaxTest.cpp
+++ b/src/tests/gl_tests/BlendMinMaxTest.cpp
@@ -45,7 +45,7 @@
         }
 
         // TODO(geofflang): figure out why this fails
-        if (IsIntel() && GetParam() == ES2_OPENGL())
+        if (isIntel() && GetParam() == ES2_OPENGL())
         {
             std::cout << "Test skipped on OpenGL Intel due to flakyness." << std::endl;
             return;
@@ -174,14 +174,14 @@
     }
 
     // TODO(jmadill): Figure out why this is broken on Intel
-    if (IsIntel() && (GetParam() == ES2_D3D11() || GetParam() == ES2_D3D9()))
+    if (isIntel() && (GetParam() == ES2_D3D11() || GetParam() == ES2_D3D9()))
     {
         std::cout << "Test skipped on Intel OpenGL." << std::endl;
         return;
     }
 
     // TODO (bug 1284): Investigate RGBA32f D3D SDK Layers messages on D3D11_FL9_3
-    if (IsD3D11_FL93())
+    if (isD3D11_FL93())
     {
         std::cout << "Test skipped on Feature Level 9_3." << std::endl;
         return;
@@ -200,7 +200,7 @@
     }
 
     // TODO(jmadill): figure out why this fails
-    if (IsIntel() && (GetParam() == ES2_D3D11() || GetParam() == ES2_D3D9()))
+    if (isIntel() && (GetParam() == ES2_D3D11() || GetParam() == ES2_D3D9()))
     {
         std::cout << "Test skipped on Intel due to failures." << std::endl;
         return;