@@ -1,6 +1,7 @@
*.trs
*.log
-odp_chksum
-odp_process
-odp_thread
-odph_pause
+chksum
+process
+thread
+pause
+ring
@@ -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
similarity index 98%
rename from helper/test/odp_chksum.c
rename to 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;
}
similarity index 96%
rename from helper/test/odp_process.c
rename to 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));
similarity index 96%
rename from helper/test/odp_thread.c
rename to 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));
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%)