Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Dec 2015 19:33:57 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r403344 - branches/2015Q4/graphics/png
Message-ID:  <201512081933.tB8JXvdu023799@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: antoine
Date: Tue Dec  8 19:33:57 2015
New Revision: 403344
URL: https://svnweb.freebsd.org/changeset/ports/403344

Log:
  MFH: r403332
  
  Do not fail the build if regression tests do not pass, there seems to
  be a regression on big endian archs between versions 1.6.19 and 1.6.20
  (reported upstream)
  
  PR:		205125

Modified:
  branches/2015Q4/graphics/png/Makefile
Directory Properties:
  branches/2015Q4/   (props changed)

Modified: branches/2015Q4/graphics/png/Makefile
==============================================================================
--- branches/2015Q4/graphics/png/Makefile	Tue Dec  8 19:29:14 2015	(r403343)
+++ branches/2015Q4/graphics/png/Makefile	Tue Dec  8 19:33:57 2015	(r403344)
@@ -30,15 +30,14 @@ PNGTEST_DESC=Enable Regression Test (rec
 PATCHFILES=	${DISTNAME}-apng.patch.gz
 .endif
 
+# Do not fail until https://sourceforge.net/p/libpng/bugs/243/ is fixed
 .if ${PORT_OPTIONS:MPNGTEST}
 post-build:
 	(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} test; then \
-        if [ x != x${BUILD_FAIL_MESSAGE} ] ; then \
-            ${ECHO_MSG} "===> Compilation failed unexpectedly."; \
-            (${ECHO_CMD} ${BUILD_FAIL_MESSAGE}) | ${FMT} 75 79 ; \
-            fi; \
-        ${FALSE}; \
-        fi)
+	if [ -f ${WRKSRC}/test-suite.log ]; then \
+	${CAT} ${WRKSRC}/test-suite.log ; \
+	fi; \
+	fi)
 .endif
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512081933.tB8JXvdu023799>