From f44c7d6f1fd40f9424eaaece79fd9bb6f7745cdc Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 5 Jul 2018 12:22:51 -0700 Subject: Updated broken shader & comput shader tests --- Tests/TestApp/src/TestBrokenShader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Tests/TestApp/src/TestBrokenShader.cpp') diff --git a/Tests/TestApp/src/TestBrokenShader.cpp b/Tests/TestApp/src/TestBrokenShader.cpp index 7282828..3ec798c 100644 --- a/Tests/TestApp/src/TestBrokenShader.cpp +++ b/Tests/TestApp/src/TestBrokenShader.cpp @@ -49,13 +49,14 @@ TestBrokenShader::TestBrokenShader(IRenderDevice *pDevice) : RefCntAutoPtr pBrokenShader; IDataBlob *pErrors = nullptr; Attrs.ppCompilerOutput = &pErrors; - LOG_INFO_MESSAGE("No worries, testing broken shader..."); + LOG_INFO_MESSAGE("\n\nNo worries, testing broken shader..."); pDevice->CreateShader(Attrs, &pBrokenShader); VERIFY_EXPR(!pBrokenShader); VERIFY_EXPR(pErrors != nullptr); const char* Msg = reinterpret_cast(pErrors->GetDataPtr()); LOG_INFO_MESSAGE("Compiler output:\n", Msg); pErrors->Release(); + LOG_INFO_MESSAGE("No worries, errors above are result of the broken shader test.\n"); SetStatus(TestResult::Succeeded); } -- cgit v1.2.3