fix: add log about printing assertion failure from kernel

Related-To: NEO-9237
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2023-11-03 14:51:26 +01:00
committed by Compute-Runtime-Automation
parent 6510c725e3
commit 098ea3a997
2 changed files with 3 additions and 2 deletions

View File

@@ -83,5 +83,5 @@ TEST(AssertHandlerTests, GivenFlagSetWhenPrintAssertAndAbortCalledThenMessageIsP
EXPECT_THROW(assertHandler.printAssertAndAbort(), std::exception);
std::string output = testing::internal::GetCapturedStderr();
EXPECT_STREQ("assert!", output.c_str());
}
EXPECT_STREQ("AssertHandler::printMessage\nassert!", output.c_str());
}