aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/common.mk
diff options
context:
space:
mode:
authorAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-08-27 18:14:26 +0100
committerAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-08-27 18:16:18 +0100
commite89ebad9cd78096d9c18a28fa01337dd622f5081 (patch)
tree844acd0106e586261f52ab422f89832eb268c23d /src/backends/backendsCommon/common.mk
parentdb16dd33fe124d25ef376b1bec41272d397b67cd (diff)
downloadarmnn-e89ebad9cd78096d9c18a28fa01337dd622f5081.tar.gz
IVGCVSW-2325 Reduce duplication in LayerTests by reusing the ElementwiseTestHelper
* Refactored tests for element-wise operations to use ElementwiseTestHelper * Moved the etasts for each operation in a separate file under backendsCommon/test/layerTests Signed-off-by: Aron Virginas-Tar <Aron.Virginas-Tar@arm.com> Change-Id: Icefb6b35df78b9619f69378229789505bf92670e
Diffstat (limited to 'src/backends/backendsCommon/common.mk')
-rw-r--r--src/backends/backendsCommon/common.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/backends/backendsCommon/common.mk b/src/backends/backendsCommon/common.mk
index d7fe9b159f..9f097431e0 100644
--- a/src/backends/backendsCommon/common.mk
+++ b/src/backends/backendsCommon/common.mk
@@ -33,7 +33,15 @@ COMMON_TEST_SOURCES := \
test/CommonTestUtils.cpp \
test/JsonPrinterTestImpl.cpp \
test/LayerTests.cpp \
- test/TensorCopyUtils.cpp
+ test/TensorCopyUtils.cpp \
+ test/layerTests/AdditionTestImpl.cpp \
+ test/layerTests/DivisionTestImpl.cpp \
+ test/layerTests/EqualTestImpl.cpp \
+ test/layerTests/GreaterTestImpl.cpp \
+ test/layerTests/MaximumTestImpl.cpp \
+ test/layerTests/MinimumTestImpl.cpp \
+ test/layerTests/MultiplicationTestImpl.cpp \
+ test/layerTests/SubtractionTestImpl.cpp
ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1)
COMMON_TEST_SOURCES += \