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@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@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@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