You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have updated Jobe to version 1.6.6 on an up to date Debian 10 server. When I launch python3 ./testsubmit.py to test the install the test "Memory limit exceeded in C (seg faults)" fails since the requested malloc call succeeds. After investigating it seems to me that the new default memory limit for C tasks is 500MB. If I edit testsubmit.py and change the #define CHUNKSIZE 500000000 line to for example #define CHUNKSIZE 550000000 the malloc fails as expected and the test succeeds. It would be nice if you could patch the code accordingly.
Best regards,
Jean-Pierre
The text was updated successfully, but these errors were encountered:
Hi,
I have updated Jobe to version 1.6.6 on an up to date Debian 10 server. When I launch
python3 ./testsubmit.py
to test the install the test "Memory limit exceeded in C (seg faults)" fails since the requestedmalloc
call succeeds. After investigating it seems to me that the new default memory limit for C tasks is 500MB. If I edittestsubmit.py
and change the#define CHUNKSIZE 500000000
line to for example#define CHUNKSIZE 550000000
the malloc fails as expected and the test succeeds. It would be nice if you could patch the code accordingly.Best regards,
Jean-Pierre
The text was updated successfully, but these errors were encountered: