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, api-next has been updated
via 50cb30d14d432257f0a80da45b71bce2ddacad8d (commit)
via b4d17b1f6807cd980a1b2dd30573f17677ea371b (commit)
via f025da7131d921a4207b31bd5af4490da9b0ef24 (commit)
via fdc44dd4322f624c2a5d8c0be5306f7c45364520 (commit)
from e04e5f90df69e3031622b77fb5273b85d47eb966 (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 50cb30d14d432257f0a80da45b71bce2ddacad8d
Merge: e04e5f90 b4d17b1f
Author: Maxim Uvarov <maxim.uvarov(a)linaro.org>
Date: Mon Oct 2 23:40:42 2017 +0300
Merge branch 'master' into api-next
-----------------------------------------------------------------------
Summary of changes:
platform/linux-generic/_fdserver.c | 24 ++++++++++----------
.../linux-generic/include/odp_packet_internal.h | 3 ---
platform/linux-generic/odp_packet.c | 26 ----------------------
test/common_plat/m4/validation.m4 | 3 ++-
4 files changed, 14 insertions(+), 42 deletions(-)
hooks/post-receive
--
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 b4d17b1f6807cd980a1b2dd30573f17677ea371b (commit)
from f025da7131d921a4207b31bd5af4490da9b0ef24 (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 b4d17b1f6807cd980a1b2dd30573f17677ea371b
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Oct 2 05:58:00 2017 +0300
tests: fix validation tests being skipped by default
After [d091f2176a28 configure: "best effort" approach for CUnit and
validation tests] by default validation tests will get skipped by
default because test_vald variable will remain set to check instead of
yes. Update it to yes, if it was not set and CUnit was found.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/test/common_plat/m4/validation.m4 b/test/common_plat/m4/validation.m4
index bf849aa3..f7127c06 100644
--- a/test/common_plat/m4/validation.m4
+++ b/test/common_plat/m4/validation.m4
@@ -23,7 +23,8 @@ AS_IF([test "x$test_vald" = "xyes" -a "x$cunit_support" = "xno"],
[AC_MSG_ERROR([Validation testsuite requested, but CUnit was not found])],
[test "x$test_vald" = "xcheck" -a "x$cunit_support" = "xno"],
[AC_MSG_WARN([CUnit was not found, disabling validation testsuite])
- test_vald=no])
+ test_vald=no],
+ [test_vald=yes])
AM_CONDITIONAL([cunit_support], [test "x$cunit_support" = "xyes"])
AM_CONDITIONAL([test_vald], [test "x$test_vald" = "xyes"])
-----------------------------------------------------------------------
Summary of changes:
test/common_plat/m4/validation.m4 | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--