Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 Mar 2013 21:23:38 +0000 (UTC)
From:      Brendan Fabeny <bf@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r314967 - head/devel/pcre
Message-ID:  <201303222123.r2MLNc5h034928@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bf
Date: Fri Mar 22 21:23:37 2013
New Revision: 314967
URL: http://svnweb.freebsd.org/changeset/ports/314967

Log:
  attempt to prevent the pcre tests from triggering a file-system
  integrity error on the package-building cluster

Modified:
  head/devel/pcre/Makefile

Modified: head/devel/pcre/Makefile
==============================================================================
--- head/devel/pcre/Makefile	Fri Mar 22 20:44:17 2013	(r314966)
+++ head/devel/pcre/Makefile	Fri Mar 22 21:23:37 2013	(r314967)
@@ -167,8 +167,14 @@ post-patch:
 post-install:
 	@${STRIP_CMD} ${PREFIX}/bin/pcregrep ${PREFIX}/bin/pcretest
 
-test: build
-	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} test
+#prevent regression test coredumps from causing failures on the
+#package-building cluster:
+.ifndef(MAINTAINER_MODE)
+CORELIMIT?=	/usr/bin/limits -Sc 0
+.endif
+
+check test: build
+	@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${CORELIMIT} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} test
 
 regression-test: test
 



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