From owner-svn-ports-all@freebsd.org Tue Dec 8 18:23:30 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 6D9049D440D; Tue, 8 Dec 2015 18:23:30 +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 3BE3B1732; Tue, 8 Dec 2015 18:23:30 +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 tB8INTW7002530; Tue, 8 Dec 2015 18:23:29 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tB8INTh2002529; Tue, 8 Dec 2015 18:23:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201512081823.tB8INTh2002529@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 18:23:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403332 - head/graphics/png X-SVN-Group: ports-head 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 18:23:30 -0000 Author: antoine Date: Tue Dec 8 18:23:29 2015 New Revision: 403332 URL: https://svnweb.freebsd.org/changeset/ports/403332 Log: 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 MFH: 2015Q4 Modified: head/graphics/png/Makefile Modified: head/graphics/png/Makefile ============================================================================== --- head/graphics/png/Makefile Tue Dec 8 18:21:10 2015 (r403331) +++ head/graphics/png/Makefile Tue Dec 8 18:23:29 2015 (r403332) @@ -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