Fix 'verification' spell in enhanced_layouts

Corrected the spelling of the TextureTestBase's
getVariableVerification method in gl4cEnhancedLayoutsTests.*, from the
mispelled getVariableVerifcation one.

Affects:

KHR-GL44.enhanced_layouts.*

VK-GL-CTS issue: 514
Components: OpenGL

Change-Id: I407fb1ed46ff6e504ebd6517d4fd04cc34599d34
diff --git a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp
index 1bbf1c7..bb6c9fa 100644
--- a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp
+++ b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp
@@ -6406,7 +6406,7 @@
 	for (GLuint i = 0; i < si.m_inputs.size(); ++i)
 	{
 		const Utils::Variable& var				= *si.m_inputs[i];
-		const std::string&	 var_verification = getVariableVerifcation("", var.m_data, var.m_descriptor, in_flavour);
+		const std::string&	 var_verification = getVariableVerification("", var.m_data, var.m_descriptor, in_flavour);
 
 		Utils::insertElementOfList(var_verification.c_str(), separator, position, verification);
 	}
@@ -6416,7 +6416,7 @@
 	{
 		const Utils::Variable& var = *si.m_uniforms[i];
 		const std::string&	 var_verification =
-			getVariableVerifcation("", var.m_data, var.m_descriptor, Utils::Variable::BASIC);
+			getVariableVerification("", var.m_data, var.m_descriptor, Utils::Variable::BASIC);
 
 		Utils::insertElementOfList(var_verification.c_str(), separator, position, verification);
 	}
@@ -6426,7 +6426,7 @@
 	{
 		const Utils::Variable& var = *si.m_ssb_blocks[i];
 		const std::string&	 var_verification =
-			getVariableVerifcation("", var.m_data, var.m_descriptor, Utils::Variable::BASIC);
+			getVariableVerification("", var.m_data, var.m_descriptor, Utils::Variable::BASIC);
 
 		Utils::insertElementOfList(var_verification.c_str(), separator, position, verification);
 	}
@@ -6577,9 +6577,9 @@
  *
  * @return Code that does (EXPECTED != VALUE) ||
  **/
-std::string TextureTestBase::getVariableVerifcation(const std::string& parent_name, const GLvoid* data,
-													const Utils::Variable::Descriptor& variable,
-													Utils::Variable::FLAVOUR		   flavour)
+std::string TextureTestBase::getVariableVerification(const std::string& parent_name, const GLvoid* data,
+													 const Utils::Variable::Descriptor& variable,
+													 Utils::Variable::FLAVOUR			flavour)
 {
 	static const GLchar* logic_op   = " ||\n        ";
 	const GLuint		 n_elements = (0 == variable.m_n_array_elements) ? 1 : variable.m_n_array_elements;
@@ -6627,7 +6627,7 @@
 
 				/* Get verification of member */
 				const std::string& verification =
-					getVariableVerifcation(name, (GLubyte*)data_ptr + member.m_offset, member, Utils::Variable::BASIC);
+					getVariableVerification(name, (GLubyte*)data_ptr + member.m_offset, member, Utils::Variable::BASIC);
 
 				Utils::insertElementOfList(verification.c_str(), logic_op, position, result);
 			}
diff --git a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp
index 60d4109..01cf82a 100644
--- a/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp
+++ b/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp
@@ -1217,8 +1217,8 @@
 									   const Utils::Variable::Descriptor& out_variable,
 									   Utils::Variable::FLAVOUR			  out_flavour);
 
-	std::string getVariableVerifcation(const std::string& parent_name, const glw::GLvoid* data,
-									   const Utils::Variable::Descriptor& variable, Utils::Variable::FLAVOUR flavour);
+	std::string getVariableVerification(const std::string& parent_name, const glw::GLvoid* data,
+										const Utils::Variable::Descriptor& variable, Utils::Variable::FLAVOUR flavour);
 
 	void prepareSSB(Utils::Program& program, Utils::Variable& variable, Utils::Buffer& buffer);