Remove forward incompatible negative check in rbo api tests.
authorJarkko Pöyry <jpoyry@google.com>
Tue, 11 Nov 2014 19:32:48 +0000 (11:32 -0800)
committerJarkko Pöyry <jpoyry@google.com>
Tue, 11 Nov 2014 19:32:48 +0000 (11:32 -0800)
Bug: 18334766
Change-Id: I794d17420308056b83028dca052ad356919875a7

modules/gles3/functional/es3fNegativeBufferApiTests.cpp

index 33871cf..7fdad38 100644 (file)
@@ -1396,11 +1396,6 @@ void NegativeBufferApiTests::init (void)
                        expectError                                                     (GL_INVALID_ENUM);
                        m_log << TestLog::EndSection;
 
-                       m_log << TestLog::Section("", "GL_INVALID_OPERATION is generated if internalformat is a signed or unsigned integer format and samples is greater than 0.");
-                       glRenderbufferStorageMultisample        (GL_RENDERBUFFER, 1, GL_RGBA8UI, 1, 1);
-                       expectError                                                     (GL_INVALID_OPERATION);
-                       m_log << TestLog::EndSection;
-
                        m_log << TestLog::Section("", "GL_INVALID_VALUE is generated if width or height is less than zero.");
                        glRenderbufferStorageMultisample        (GL_RENDERBUFFER, 2, GL_RGBA4, -1, 1);
                        expectError                                                     (GL_INVALID_VALUE);