The directory cunit is named after th tool rather than the codes purpose. This patch renames it to validation.
Signed-off-by: Mike Holmes <[email protected]> --- .gitignore | 4 ++-- configure.ac | 2 +- test/Makefile.am | 2 +- test/{cunit => validation}/Makefile.am | 0 test/{cunit => validation}/odp_init.c | 0 test/{cunit => validation}/odp_queue.c | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename test/{cunit => validation}/Makefile.am (100%) rename test/{cunit => validation}/odp_init.c (100%) rename test/{cunit => validation}/odp_queue.c (100%) diff --git a/.gitignore b/.gitignore index 90db906..ad2e822 100644 --- a/.gitignore +++ b/.gitignore @@ -47,5 +47,5 @@ odp_init odp_queue doxygen-doc test-driver -test/cunit/*.log -test/cunit/*.trs +test/validation/*.log +test/validation/*.trs diff --git a/configure.ac b/configure.ac index fcd7279..d5e3fc8 100644 --- a/configure.ac +++ b/configure.ac @@ -172,7 +172,7 @@ AC_CONFIG_FILES([Makefile example/timer/Makefile test/Makefile test/api_test/Makefile - test/cunit/Makefile + test/validation/Makefile pkgconfig/libodp.pc]) AC_SEARCH_LIBS([timer_create],[rt posix4]) diff --git a/test/Makefile.am b/test/Makefile.am index 61b97a2..90598bf 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1 +1 @@ -SUBDIRS = api_test cunit +SUBDIRS = api_test validation diff --git a/test/cunit/Makefile.am b/test/validation/Makefile.am similarity index 100% rename from test/cunit/Makefile.am rename to test/validation/Makefile.am diff --git a/test/cunit/odp_init.c b/test/validation/odp_init.c similarity index 100% rename from test/cunit/odp_init.c rename to test/validation/odp_init.c diff --git a/test/cunit/odp_queue.c b/test/validation/odp_queue.c similarity index 100% rename from test/cunit/odp_queue.c rename to test/validation/odp_queue.c -- 2.1.0 _______________________________________________ lng-odp mailing list [email protected] http://lists.linaro.org/mailman/listinfo/lng-odp
