summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestBrokenShader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestApp/src/TestBrokenShader.cpp')
-rw-r--r--Tests/TestApp/src/TestBrokenShader.cpp3
1 files changed, 2 insertions, 1 deletions
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<IShader> 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<const char*>(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);
}