On Wed, 20 Oct 2010 10:08:29 +1100 Bill Maidment <b...@maidment.vu> wrote:
> -----Original message----- > > > > > You can help by testing (or just running ./configure && make check) > > the latest code available in our Git repository - the latest > > snapshot tarball can be grabbed here: > > > > http://git.clamav.net/gitweb?p=clamav-devel.git;a=snapshot;h=refs/heads/master;s > > f=tgz > > > > make check reports several errors for RHEL 6 Beta2. See attached log > file. Attachment didn't make it to the list, but you probably encounter this bug: https://wwws.clamav.net/bugzilla/show_bug.cgi?id=1990 Problem is RHEL6 has experimental memory allocator enabled, which causes higher memory usage. For example 8 threads, each allocating 1 MB, with a 10MB stack should need ~88MB from the system. Yet with RHEL6 it needs >512MB from system. I reported this here (but got closed NOTABUG): https://bugzilla.redhat.com/show_bug.cgi?id=598498 And reported a 2nd bug with a better testcase here, but got no reply so far: https://bugzilla.redhat.com/show_bug.cgi?id=640286 Does this patch help? (it increases memory limits) diff --git a/unit_tests/check_common.sh b/unit_tests/check_common.sh index 13af7b1..1caf62c 100644 --- a/unit_tests/check_common.sh +++ b/unit_tests/check_common.sh @@ -47,8 +47,8 @@ die() # Setup test directory to avoid temporary and output file clashes test_start() { - ulimit -t 120 || true; ulimit -d 512000 || true; - ulimit -v 512000 || true; + ulimit -t 120 || true; ulimit -d 1024000 || true; + ulimit -v 1024000 || true; (cd test-$1 2>/dev/null && killclamd || true) rm -rf test-$1 mkdir test-$1 _______________________________________________ Help us build a comprehensive ClamAV guide: visit http://wiki.clamav.net http://www.clamav.net/support/ml