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 3bacbfd55edf76b897a4b2e5c62b59ca6fa95331 (commit) from 37b430cb9e8f6834a3c76ab108489cec719b9e32 (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 3bacbfd55edf76b897a4b2e5c62b59ca6fa95331 Author: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Date: Mon Oct 2 05:58:00 2017 +0300
tests: fix disabling of validation tests
Fix for the fix... [b4d17b1f6807 tests: fix validation tests being skipped by default] attempted to fix tests being disabled by default, but in attempt to do so just forced them to be enabled even if they are forcibly disabled by configure option. Update conditions to really enable testsuite if it was not disabled. https://bugs.linaro.org/show_bug.cgi?id=3300
Signed-off-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@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 f7127c06..65ba2aa2 100644 --- a/test/common_plat/m4/validation.m4 +++ b/test/common_plat/m4/validation.m4 @@ -24,7 +24,7 @@ AS_IF([test "x$test_vald" = "xyes" -a "x$cunit_support" = "xno"], [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=yes]) + [test "x$test_vald" != "xno"], [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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive