diff mbox

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

Message ID 1434988980-14008-6-git-send-email-christophe.milard@linaro.org
State Accepted
Commit e19222b1d7e8895af5c9796325558032c93dfbae
Headers show

Commit Message

Christophe Milard June 22, 2015, 4:03 p.m. UTC
system_main is now ran from the platform side. As system tests do not
have any platform dependency, the call to the platform agnostic
tests is performed directly in the Makefele.am (TESTS)
(At present, the system module just contains time 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 fd593f1..ea35083 100644
--- a/platform/linux-generic/test/Makefile.am
+++ b/platform/linux-generic/test/Makefile.am
@@ -4,7 +4,8 @@  ODP_MODULES = pktio
 
 if test_vald
 TESTS = pktio/pktio_run \
-	${top_builddir}/test/validation/crypto/crypto_main
+	${top_builddir}/test/validation/crypto/crypto_main \
+	${top_builddir}/test/validation/system/system_main
 SUBDIRS = $(ODP_MODULES)
 endif
 
diff --git a/test/validation/Makefile.am b/test/validation/Makefile.am
index 913a0b4..84090a5 100644
--- a/test/validation/Makefile.am
+++ b/test/validation/Makefile.am
@@ -22,8 +22,7 @@  EXECUTABLES = odp_buffer \
 	      odp_ver_abt_log_dbg
 
 if test_vald
-TESTS = $(EXECUTABLES) \
-	system/system_main
+TESTS = $(EXECUTABLES)
 endif
 
 bin_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY)