diff mbox

helpers: remove odp_ prefix for tests source files

Message ID 1444129187-31990-1-git-send-email-maxim.uvarov@linaro.org
State New
Headers show

Commit Message

Maxim Uvarov Oct. 6, 2015, 10:59 a.m. UTC
Prefixed were removed for validation test suite and to
be consistent we need to do the same for helpers.

Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
---
 helper/test/Makefile.am                  | 16 ++++++++--------
 helper/test/{odp_chksum.c => chksum.c}   |  0
 helper/test/{odp_process.c => process.c} |  0
 helper/test/{odp_thread.c => thread.c}   |  0
 4 files changed, 8 insertions(+), 8 deletions(-)
 rename helper/test/{odp_chksum.c => chksum.c} (100%)
 rename helper/test/{odp_process.c => process.c} (100%)
 rename helper/test/{odp_thread.c => thread.c} (100%)

diff --git a/helper/test/odp_chksum.c b/helper/test/chksum.c
similarity index 100%
rename from helper/test/odp_chksum.c
rename to helper/test/chksum.c
diff --git a/helper/test/odp_process.c b/helper/test/process.c
similarity index 100%
rename from helper/test/odp_process.c
rename to helper/test/process.c
diff --git a/helper/test/odp_thread.c b/helper/test/thread.c
similarity index 100%
rename from helper/test/odp_thread.c
rename to helper/test/thread.c
diff mbox

Patch

diff --git a/helper/test/Makefile.am b/helper/test/Makefile.am
index 7b73602..f6a3f83 100644
--- a/helper/test/Makefile.am
+++ b/helper/test/Makefile.am
@@ -5,9 +5,9 @@  AM_LDFLAGS += -static
 
 TESTS_ENVIRONMENT += TEST_DIR=${builddir}
 
-EXECUTABLES = odp_chksum$(EXEEXT) \
-              odp_thread$(EXEEXT) \
-              odp_process$(EXEEXT)
+EXECUTABLES = chksum$(EXEEXT) \
+              thread$(EXEEXT) \
+              process$(EXEEXT)
 
 COMPILE_ONLY =
 
@@ -22,8 +22,8 @@  dist_bin_SCRIPTS =
 bin_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY)
 
 
-dist_odp_chksum_SOURCES = odp_chksum.c
-dist_odp_thread_SOURCES = odp_thread.c
-odp_thread_LDADD = $(LIB)/libodphelper.la $(LIB)/libodp.la
-dist_odp_process_SOURCES = odp_process.c
-odp_process_LDADD = $(LIB)/libodphelper.la $(LIB)/libodp.la
+dist_chksum_SOURCES = chksum.c
+dist_thread_SOURCES = thread.c
+thread_LDADD = $(LIB)/libodphelper.la $(LIB)/libodp.la
+dist_process_SOURCES = process.c
+process_LDADD = $(LIB)/libodphelper.la $(LIB)/libodp.la