From c60d0fd2cb57f0af7ecc6dc1fc678a9d2a2e629a Mon Sep 17 00:00:00 2001 From: David Monahan Date: Tue, 19 May 2020 14:58:34 +0100 Subject: IVGCVSW-IVGCVSW-4772 Fixes for android-nn-driver unit tests on Android R * Added missing operand parameter numberOfConsumers to DriverTestHelpers * Added nullptr checks to unit tests * Disabling QuantizedLstmTest when ARMCOMPUTECL_ENABLED is undefined Signed-off-by: David Monahan Change-Id: I46dc413d3bb1805eb0e7c982177b6d60d0b297f5 --- test/Concat.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test/Concat.cpp') diff --git a/test/Concat.cpp b/test/Concat.cpp index b99e31cc..b4b650fa 100644 --- a/test/Concat.cpp +++ b/test/Concat.cpp @@ -128,6 +128,7 @@ ConcatTestImpl(const std::vector & inputs, float* outdata = static_cast(static_cast(outMemory->getPointer())); // run the execution + ARMNN_ASSERT(preparedModel.get() != nullptr); auto execStatus = Execute(preparedModel, request, expectedExecStatus); BOOST_TEST(execStatus == expectedExecStatus); -- cgit v1.2.1