From owner-svn-ports-all@freebsd.org Tue Dec 8 19:33:58 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 890889D58E3; Tue, 8 Dec 2015 19:33:58 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 567D1194C; Tue, 8 Dec 2015 19:33:58 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tB8JXvGq023800; Tue, 8 Dec 2015 19:33:57 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB8JXvdu023799; Tue, 8 Dec 2015 19:33:57 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201512081933.tB8JXvdu023799@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 8 Dec 2015 19:33:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r403344 - branches/2015Q4/graphics/png X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Dec 2015 19:33:58 -0000 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