diff mbox

[PATCHv13,4/9] helpers: remove odp_ prefix for tests source files

Message ID 1447331786-13461-5-git-send-email-maxim.uvarov@linaro.org
State New
Headers show

Commit Message

Maxim Uvarov Nov. 12, 2015, 12:36 p.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/.gitignore                   |  9 +++++----
 helper/test/Makefile.am                  | 18 ++++++++----------
 helper/test/{odp_chksum.c => chksum.c}   |  3 +--
 helper/test/{odp_process.c => process.c} |  3 ++-
 helper/test/{odp_thread.c => thread.c}   |  3 ++-
 5 files changed, 18 insertions(+), 18 deletions(-)
 rename helper/test/{odp_chksum.c => chksum.c} (98%)
 rename helper/test/{odp_process.c => process.c} (96%)
 rename helper/test/{odp_thread.c => thread.c} (96%)
diff mbox

Patch

diff --git a/helper/test/.gitignore b/helper/test/.gitignore
index 213bc5e..0c7e81f 100644
--- a/helper/test/.gitignore
+++ b/helper/test/.gitignore
@@ -1,6 +1,7 @@ 
 *.trs
 *.log
-odp_chksum
-odp_process
-odp_thread
-odph_pause
+chksum
+process
+thread
+pause
+ring
diff --git a/helper/test/Makefile.am b/helper/test/Makefile.am
index fbf5a9b..f6a3f83 100644
--- a/helper/test/Makefile.am
+++ b/helper/test/Makefile.am
@@ -5,10 +5,9 @@  AM_LDFLAGS += -static
 
 TESTS_ENVIRONMENT += TEST_DIR=${builddir}
 
-EXECUTABLES = odp_chksum$(EXEEXT) \
-              odp_thread$(EXEEXT) \
-              odp_process$(EXEEXT)\
-              odph_pause$(EXEEXT)
+EXECUTABLES = chksum$(EXEEXT) \
+              thread$(EXEEXT) \
+              process$(EXEEXT)
 
 COMPILE_ONLY =
 
@@ -23,9 +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
-odph_pause_SOURCES = odph_pause.c
+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
diff --git a/helper/test/odp_chksum.c b/helper/test/chksum.c
similarity index 98%
rename from helper/test/odp_chksum.c
rename to helper/test/chksum.c
index 1d417a8..c987905 100644
--- a/helper/test/odp_chksum.c
+++ b/helper/test/chksum.c
@@ -64,10 +64,9 @@  static int scan_ip(const char *buf, unsigned int *paddr)
 		if (paddr)
 			*paddr = part1 << 24 | part2 << 16 | part3 << 8 | part4;
 		return 1;
-	} else {
-		printf("not good ip %d:%d:%d:%d/n", part1, part2, part3, part4);
 	}
 
+	printf("not good ip %d:%d:%d:%d/n", part1, part2, part3, part4);
 	return 0;
 }
 
diff --git a/helper/test/odp_process.c b/helper/test/process.c
similarity index 96%
rename from helper/test/odp_process.c
rename to helper/test/process.c
index cb9b328..6648627 100644
--- a/helper/test/odp_process.c
+++ b/helper/test/process.c
@@ -53,7 +53,8 @@  int main(int argc TEST_UNUSED, char *argv[] TEST_UNUSED)
 	cpu = odp_cpumask_first(&cpu_mask);
 	printf("the first CPU:              %i\n", cpu);
 
-	/* reserve cpu 0 for the control plane so remove it from the default mask */
+	/* reserve cpu 0 for the control plane so remove it from
+	 * the default mask */
 	odp_cpumask_clr(&cpu_mask, 0);
 	num_workers = odp_cpumask_count(&cpu_mask);
 	(void)odp_cpumask_to_str(&cpu_mask, cpumaskstr, sizeof(cpumaskstr));
diff --git a/helper/test/odp_thread.c b/helper/test/thread.c
similarity index 96%
rename from helper/test/odp_thread.c
rename to helper/test/thread.c
index 592f856..4e7f053 100644
--- a/helper/test/odp_thread.c
+++ b/helper/test/thread.c
@@ -54,7 +54,8 @@  int main(int argc TEST_UNUSED, char *argv[] TEST_UNUSED)
 	cpu = odp_cpumask_first(&cpu_mask);
 	printf("the first CPU:              %i\n", cpu);
 
-	/* reserve cpu 0 for the control plane so remove it from the default mask */
+	/* reserve cpu 0 for the control plane so remove it from
+	 * the default mask */
 	odp_cpumask_clr(&cpu_mask, 0);
 	num_workers = odp_cpumask_count(&cpu_mask);
 	(void)odp_cpumask_to_str(&cpu_mask, cpumaskstr, sizeof(cpumaskstr));