@@ -15,7 +15,8 @@ TESTS = pktio/pktio_run \
${top_builddir}/test/validation/queue/queue_main$(EXEEXT) \
${top_builddir}/test/validation/random/random_main$(EXEEXT) \
${top_builddir}/test/validation/scheduler/scheduler_main$(EXEEXT) \
- ${top_builddir}/test/validation/system/system_main$(EXEEXT)
+ ${top_builddir}/test/validation/system/system_main$(EXEEXT) \
+ ${top_builddir}/test/validation/thread/thread_main$(EXEEXT)
SUBDIRS = $(ODP_MODULES)
endif
@@ -11,8 +11,7 @@ EXECUTABLES = odp_cpumask$(EXEEXT) \
odp_ver_abt_log_dbg$(EXEEXT)
if test_vald
-TESTS = $(EXECUTABLES) \
- thread/thread_main
+TESTS = $(EXECUTABLES)
endif
bin_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY)
thread_main is now ran from the platform side. As thread 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(-)