This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via 59b52a40e9e61992fc0089052055313774fde5f5 (commit) via aa72a6f0af30414f5bf84e3fa3a20c755517cb86 (commit) via bd0499915c84f70ce19153b13ff5573df3d578a0 (commit) from e1502b233407b5dfaf530de5c3cf97a5c20ab92b (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 59b52a40e9e61992fc0089052055313774fde5f5 Author: Anders Roxell anders.roxell@linaro.org Date: Thu Jul 14 23:18:38 2016 +0200
example/ipsec: scope ipsec examples
Signed-off-by: Anders Roxell anders.roxell@linaro.org Reviewed-and-tested-by: Mike Holmes mike.holmes@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/example/ipsec/Makefile.am b/example/ipsec/Makefile.am index c82ea0a..01ccd42 100644 --- a/example/ipsec/Makefile.am +++ b/example/ipsec/Makefile.am @@ -15,15 +15,15 @@ noinst_HEADERS = \ $(top_srcdir)/example/example_debug.h
dist_bin_SCRIPTS = \ - $(srcdir)/run_ah_in \ - $(srcdir)/run_ah_out \ - $(srcdir)/run_both_in \ - $(srcdir)/run_both_out \ - $(srcdir)/run_esp_in \ - $(srcdir)/run_esp_out \ - $(srcdir)/run_live \ - $(srcdir)/run_router \ - $(srcdir)/run_simple + $(srcdir)/odp_ipsec_run_ah_in \ + $(srcdir)/odp_ipsec_run_ah_out \ + $(srcdir)/odp_ipsec_run_both_in \ + $(srcdir)/odp_ipsec_run_both_out \ + $(srcdir)/odp_ipsec_run_esp_in \ + $(srcdir)/odp_ipsec_run_esp_out \ + $(srcdir)/odp_ipsec_run_live \ + $(srcdir)/odp_ipsec_run_router \ + $(srcdir)/odp_ipsec_run_simple
dist_odp_ipsec_SOURCES = odp_ipsec.c \ odp_ipsec_sa_db.c \ diff --git a/example/ipsec/run_ah_in b/example/ipsec/odp_ipsec_run_ah_in similarity index 100% rename from example/ipsec/run_ah_in rename to example/ipsec/odp_ipsec_run_ah_in diff --git a/example/ipsec/run_ah_out b/example/ipsec/odp_ipsec_run_ah_out similarity index 100% rename from example/ipsec/run_ah_out rename to example/ipsec/odp_ipsec_run_ah_out diff --git a/example/ipsec/run_both_in b/example/ipsec/odp_ipsec_run_both_in similarity index 100% rename from example/ipsec/run_both_in rename to example/ipsec/odp_ipsec_run_both_in diff --git a/example/ipsec/run_both_out b/example/ipsec/odp_ipsec_run_both_out similarity index 100% rename from example/ipsec/run_both_out rename to example/ipsec/odp_ipsec_run_both_out diff --git a/example/ipsec/run_esp_in b/example/ipsec/odp_ipsec_run_esp_in similarity index 100% rename from example/ipsec/run_esp_in rename to example/ipsec/odp_ipsec_run_esp_in diff --git a/example/ipsec/run_esp_out b/example/ipsec/odp_ipsec_run_esp_out similarity index 100% rename from example/ipsec/run_esp_out rename to example/ipsec/odp_ipsec_run_esp_out diff --git a/example/ipsec/run_live b/example/ipsec/odp_ipsec_run_live similarity index 100% rename from example/ipsec/run_live rename to example/ipsec/odp_ipsec_run_live diff --git a/example/ipsec/run_router b/example/ipsec/odp_ipsec_run_router similarity index 100% rename from example/ipsec/run_router rename to example/ipsec/odp_ipsec_run_router diff --git a/example/ipsec/run_simple b/example/ipsec/odp_ipsec_run_simple similarity index 100% rename from example/ipsec/run_simple rename to example/ipsec/odp_ipsec_run_simple
commit aa72a6f0af30414f5bf84e3fa3a20c755517cb86 Author: Anders Roxell anders.roxell@linaro.org Date: Thu Jul 14 23:18:37 2016 +0200
example/time/Makefile: remove incorrect postfix _test
Signed-off-by: Anders Roxell anders.roxell@linaro.org Reviewed-and-tested-by: Mike Holmes mike.holmes@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/example/time/.gitignore b/example/time/.gitignore index 3106aea..938c1aa 100644 --- a/example/time/.gitignore +++ b/example/time/.gitignore @@ -1 +1 @@ -odp_time_global_test +odp_time_global diff --git a/example/time/Makefile.am b/example/time/Makefile.am index 915593a..c1db375 100644 --- a/example/time/Makefile.am +++ b/example/time/Makefile.am @@ -1,10 +1,10 @@ include $(top_srcdir)/example/Makefile.inc
-bin_PROGRAMS = odp_time_global_test$(EXEEXT) -odp_time_global_test_LDFLAGS = $(AM_LDFLAGS) -static -odp_time_global_test_CFLAGS = $(AM_CFLAGS) -I${top_srcdir}/example +bin_PROGRAMS = odp_time_global$(EXEEXT) +odp_time_global_LDFLAGS = $(AM_LDFLAGS) -static +odp_time_global_CFLAGS = $(AM_CFLAGS) -I${top_srcdir}/example
noinst_HEADERS = \ $(top_srcdir)/example/example_debug.h
-dist_odp_time_global_test_SOURCES = time_global_test.c +dist_odp_time_global_SOURCES = time_global_test.c
commit bd0499915c84f70ce19153b13ff5573df3d578a0 Author: Anders Roxell anders.roxell@linaro.org Date: Thu Jul 14 23:18:36 2016 +0200
helper/test/Makefile: don't install tests
Signed-off-by: Anders Roxell anders.roxell@linaro.org Reviewed-and-tested-by: Mike Holmes mike.holmes@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/helper/test/Makefile.am b/helper/test/Makefile.am index e9e8785..545db73 100644 --- a/helper/test/Makefile.am +++ b/helper/test/Makefile.am @@ -22,7 +22,7 @@ endif
dist_bin_SCRIPTS =
-bin_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY) +test_PROGRAMS = $(EXECUTABLES) $(COMPILE_ONLY)
EXTRA_DIST = odpthreads_as_processes odpthreads_as_pthreads
-----------------------------------------------------------------------
Summary of changes: example/ipsec/Makefile.am | 18 +++++++++--------- example/ipsec/{run_ah_in => odp_ipsec_run_ah_in} | 0 example/ipsec/{run_ah_out => odp_ipsec_run_ah_out} | 0 example/ipsec/{run_both_in => odp_ipsec_run_both_in} | 0 example/ipsec/{run_both_out => odp_ipsec_run_both_out} | 0 example/ipsec/{run_esp_in => odp_ipsec_run_esp_in} | 0 example/ipsec/{run_esp_out => odp_ipsec_run_esp_out} | 0 example/ipsec/{run_live => odp_ipsec_run_live} | 0 example/ipsec/{run_router => odp_ipsec_run_router} | 0 example/ipsec/{run_simple => odp_ipsec_run_simple} | 0 example/time/.gitignore | 2 +- example/time/Makefile.am | 8 ++++---- helper/test/Makefile.am | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) rename example/ipsec/{run_ah_in => odp_ipsec_run_ah_in} (100%) rename example/ipsec/{run_ah_out => odp_ipsec_run_ah_out} (100%) rename example/ipsec/{run_both_in => odp_ipsec_run_both_in} (100%) rename example/ipsec/{run_both_out => odp_ipsec_run_both_out} (100%) rename example/ipsec/{run_esp_in => odp_ipsec_run_esp_in} (100%) rename example/ipsec/{run_esp_out => odp_ipsec_run_esp_out} (100%) rename example/ipsec/{run_live => odp_ipsec_run_live} (100%) rename example/ipsec/{run_router => odp_ipsec_run_router} (100%) rename example/ipsec/{run_simple => odp_ipsec_run_simple} (100%)
hooks/post-receive