aboutsummaryrefslogtreecommitdiff
path: root/src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp')
-rw-r--r--src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp b/src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp
index 21809eb0f1..246f5b49ca 100644
--- a/src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp
+++ b/src/armnnDeserializer/test/ParserFlatbuffersSerializeFixture.hpp
@@ -96,10 +96,10 @@ struct ParserFlatbuffersSerializeFixture
flatbuffers::Parser parser;
bool ok = parser.Parse(schemafile.c_str());
- ARMNN_ASSERT_MSG(ok, "Failed to parse schema file");
+ CHECK_MESSAGE(ok, std::string("Failed to parse schema file. Error was: " + parser.error_).c_str());
ok &= parser.Parse(m_JsonString.c_str());
- ARMNN_ASSERT_MSG(ok, "Failed to parse json input");
+ CHECK_MESSAGE(ok, std::string("Failed to parse json input. Error was: " + parser.error_).c_str());
if (!ok)
{