[Pkg-apache-commits] r887 - in /trunk/apr: changelog rules
sf at alioth.debian.org
sf at alioth.debian.org
Fri Feb 27 13:57:42 UTC 2009
Author: sf
Date: Fri Feb 27 13:57:41 2009
New Revision: 887
URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=887
Log:
Reduce stack size for the 'testatomic' test since it may otherwise run out
of virtual memory on some buildds.
Modified:
trunk/apr/changelog
trunk/apr/rules
Modified: trunk/apr/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/changelog?rev=887&op=diff
==============================================================================
--- trunk/apr/changelog (original)
+++ trunk/apr/changelog Fri Feb 27 13:57:41 2009
@@ -1,3 +1,10 @@
+apr (1.3.3-3) UNRELEASED; urgency=low
+
+ * Reduce stack size for the 'testatomic' test since it may otherwise run out
+ of virtual memory on some buildds. This sometimes caused FTBFS on hppa.
+
+ -- Stefan Fritsch <sf at debian.org> Fri, 27 Feb 2009 14:52:44 +0100
+
apr (1.3.3-2) unstable; urgency=low
[ Ryan Niebur ]
Modified: trunk/apr/rules
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/rules?rev=887&op=diff
==============================================================================
--- trunk/apr/rules (original)
+++ trunk/apr/rules Fri Feb 27 13:57:41 2009
@@ -91,10 +91,9 @@
test-stamp: build
dh_testdir
$(MAKE) -C $(BUILDDIR)/test all CFLAGS="$(H_CFLAGS)" LDFLAGS="$(H_LDFLAGS)"
- ls -al $(BUILDDIR)/test/data || true
- id || true
cd $(BUILDDIR)/test && ./testall -v testsockets testsock || $(IGNORE_TESTSOCK)
- cd $(BUILDDIR)/test && ./testall -v -x testsockets testsock
+ cd $(BUILDDIR)/test && ( ulimit -S -s 8192 ; ./testall -v testatomic)
+ cd $(BUILDDIR)/test && ./testall -v -x testsockets testsock testatomic
touch $@
install: build $(TEST_TARGET)
More information about the Pkg-apache-commits
mailing list