aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2009-01-08 06:18:46 +0800
committermiwi <miwi@FreeBSD.org>2009-01-08 06:18:46 +0800
commit6876fc06a27abe5c20ee3bc3f7244c881885793f (patch)
treed35fece79b8a9ee2b77b5b9174f5f013fa7227d8
parent5ac4d92429f539d6ff503ff0bbaf5b62f47f4b02 (diff)
downloadfreebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.tar.gz
freebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.tar.zst
freebsd-ports-gnome-6876fc06a27abe5c20ee3bc3f7244c881885793f.zip
- Set MALLOC_OPTIONS=jz for self-test to avoid excessive (multiple hours!)
duration of self-tests. Found by Christian Weisgerber (naddy@). PR: 130154 Submitted by: Matthias Andree <matthias.andree@gmx.de> (maintainer)
-rw-r--r--archivers/lzo2/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/archivers/lzo2/Makefile b/archivers/lzo2/Makefile
index b51ac156262b..56ad60beca8e 100644
--- a/archivers/lzo2/Makefile
+++ b/archivers/lzo2/Makefile
@@ -24,8 +24,9 @@ CONFIGURE_ARGS= --enable-shared
USE_LDCONFIG= yes
post-build:
- @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes, without output)"
- cd ${WRKSRC} && ${MAKE} test SHELL="${SH} -x"
+ @${ECHO_MSG} "===> Running self-tests for ${PKGNAME} (can take a few minutes)"
+ @#: override MALLOC_OPTIONS, else tests take excessively long
+ cd ${WRKSRC} && env MALLOC_OPTIONS=jz ${MAKE} check test SHELL="${SH} -x"
post-install:
.if !defined(NOPORTDOCS)