1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

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
This commit is contained in:
Antoine Brodin 2015-12-08 18:23:29 +00:00
parent 88570f630a
commit 5b9de1145e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=403332

View File

@ -30,15 +30,14 @@ PNGTEST_DESC=Enable Regression Test (recommended)
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>