From owner-svn-ports-head@freebsd.org Tue Jul 19 21:47:56 2016 Return-Path: Delivered-To: svn-ports-head@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 799B7B9E269; Tue, 19 Jul 2016 21:47:56 +0000 (UTC) (envelope-from mandree@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 44CD11160; Tue, 19 Jul 2016 21:47:56 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6JLltE6081238; Tue, 19 Jul 2016 21:47:55 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6JLlt96081237; Tue, 19 Jul 2016 21:47:55 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201607192147.u6JLlt96081237@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Tue, 19 Jul 2016 21:47:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418815 - head/sysutils/e2fsprogs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jul 2016 21:47:56 -0000 Author: mandree Date: Tue Jul 19 21:47:55 2016 New Revision: 418815 URL: https://svnweb.freebsd.org/changeset/ports/418815 Log: Mark BROKEN on FreeBSD 11+ due to self-test failures. Be sure not to run tests under NOTESTS. Modified: head/sysutils/e2fsprogs/Makefile Modified: head/sysutils/e2fsprogs/Makefile ============================================================================== --- head/sysutils/e2fsprogs/Makefile Tue Jul 19 21:17:20 2016 (r418814) +++ head/sysutils/e2fsprogs/Makefile Tue Jul 19 21:47:55 2016 (r418815) @@ -126,6 +126,17 @@ post-patch:: u_mke2fs_opt_offset @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} .endfor +# m_rootdir behaves erratically on 9.x and fails randomly, +# but may succeed when run again. Disable for now. +.if ${OSVERSION} < 1000000 +.for i in m_rootdir + @${MV} ${WRKSRC}/tests/${i} ${WRKSRC}/tests/disabled_test-${i} +.endfor +.endif +.endif + +.if ${OSVERSION} > 1100000 +BROKEN=self-test failures on FreeBSD 11+ hint to data corruption issues. .endif .if ${MASTERDIR} == ${.CURDIR} @@ -178,11 +189,15 @@ post-build: # test on each and every system and not just package building hosts. # There have been subtle failures induced by Linux-isms in the past. # -- Matthias Andree, package maintainer, 2007-09-18 +.if empty(PORT_OPTIONS:MNOTESTS) @${ECHO_CMD} '===> Running e2fsprogs self-test suite' # do not add -j options unconditionally to ${MAKE_CMD} below, this might break # due to excessive disk space use. cd ${WRKSRC}/tests && ${MKDIR} ${WRKDIR}/tmp && ${MAKE_CMD} check ${_CHECK_JOBS} ${_checkaddargs} \ || { head -n30000 ${WRKSRC}/tests/*.failed 2>/dev/null ; exit 1 ; } +.else + @${ECHO_CMD} '===> SKIPPING e2fsprogs self-test suite (DISCOURAGED!)' +.endif post-install: ${RM} -f ${STAGEDIR}${PREFIX}/sbin/uuidd