This is an automated email from the ASF dual-hosted git repository.

baunsgaard pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git

commit d14065994b56414185f520a41d0c17c05601ca36
Author: baunsgaard <[email protected]>
AuthorDate: Tue Oct 19 01:39:16 2021 +0200

    [MINOR] Set safer lower number of threads in tests
    
    In some cases of test execution we still run out of memory,
    to reduce the likelihood this commit further reduce the memory budget
    of individual forks to 3 GB and reduce the parallelization to 2.
    
    For local test execution this also seems fine, since many of the tests
    use parallel instructions as well, utilizing the CPU.
---
 pom.xml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index f54ed8a..e9933f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -53,7 +53,7 @@
                <rerun.failing.tests.count>2</rerun.failing.tests.count>
                <jacoco.skip>true</jacoco.skip>
                
<automatedtestbase.outputbuffering>false</automatedtestbase.outputbuffering>
-               <argLine>-Xms3300m -Xmx3300m -Xmn330m</argLine>
+               <argLine>-Xms3000m -Xmx3000m -Xmn300m</argLine>
                <enableStats>false</enableStats>
        </properties>
 
@@ -290,8 +290,7 @@
                                <configuration>
                                        
<skipTests>${maven.test.skip}</skipTests>
                                        <parallel>classes</parallel>
-                                       <threadCount>12</threadCount>
-                                       <!-- 1C means the number of threads 
times 1 possible maximum forks for testing-->
+                                       <threadCount>2</threadCount>
                                        <forkCount>1C</forkCount>
                                        <reuseForks>false</reuseForks>
                                        <reportFormat>brief</reportFormat>

Reply via email to