diff mbox

[5/5] validation: call to crypto_main from platform

Message ID 1434577905-11797-6-git-send-email-christophe.milard@linaro.org
State Accepted
Commit 256cef401474518e17a07ccdd7fd6e539290a69c
Headers show

Commit Message

Christophe Milard June 17, 2015, 9:51 p.m. UTC
crypto_main is now ran from the platform side. As crypto tests do not have
any platform dependency, the call to the platform agnostic tests is
performed directly in the Makefele.am (TESTS).

Signed-off-by: Christophe Milard <christophe.milard@linaro.org>
---
 platform/linux-generic/test/Makefile.am | 3 ++-
 test/validation/Makefile.am             | 3 +--
 2 files changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/platform/linux-generic/test/Makefile.am b/platform/linux-generic/test/Makefile.am
index e1e1c50..fd593f1 100644
--- a/platform/linux-generic/test/Makefile.am
+++ b/platform/linux-generic/test/Makefile.am
@@ -3,7 +3,8 @@  TESTS_ENVIRONMENT = TEST_DIR=${top_builddir}/test/validation
 ODP_MODULES = pktio
 
 if test_vald
-TESTS = pktio/pktio_run
+TESTS = pktio/pktio_run \
+	${top_builddir}/test/validation/crypto/crypto_main
 SUBDIRS = $(ODP_MODULES)
 endif
 
diff --git a/test/validation/Makefile.am b/test/validation/Makefile.am
index 3992e8f..a0277e7 100644
--- a/test/validation/Makefile.am
+++ b/test/validation/Makefile.am
@@ -23,8 +23,7 @@  EXECUTABLES = odp_buffer \
 	      odp_ver_abt_log_dbg
 
 if test_vald
-TESTS = $(EXECUTABLES) \
-	crypto/crypto_main
+TESTS = $(EXECUTABLES)
 endif
 
 bin_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY)