From 63bffb555487763551c062877269a3f41d324673 Mon Sep 17 00:00:00 2001 From: Liam Middlebrook Date: Tue, 16 Jan 2018 22:22:22 -0800 Subject: [PATCH] Fix typo in log message for ClearOpsBufferStorage A copy-paste error led for the ClearOpsBufferStorageCase inside of SparseBufferTests to output that the "Unmodified buffer object region has invalid contents" for cases referring to invalid contents for the modified buffer region. Components: OpenGL VK-GL-CTS issue: 956 Change-Id: I562ff6fa984977ee08ca0f2783a046b1bac235bd Reviewed-By: pdaniell --- external/openglcts/modules/gl/gl4cSparseBufferTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp b/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp index ab56c3d..547ad61 100644 --- a/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp +++ b/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp @@ -1782,7 +1782,7 @@ bool ClearOpsBufferStorageTestCase::execute(glw::GLuint sparse_bo_storage_flags) if (expected_value != found_value) { m_testCtx.getLog() << tcu::TestLog::Message - << "Unmodified buffer object region has invalid contents. Expected byte " + << "Modified buffer object region has invalid contents. Expected byte " << "[" << (int)expected_value << "]" ", found byte:" "[" -- 2.7.4