test-runner: increase RAM to 384MB

Occationally python will fatally terminate trying to load a test
using importlib with an out of memory exception. Increasing RAM
allows reliable exection of all tests.
This commit is contained in:
James Prestwood 2021-07-29 15:21:50 -07:00 committed by Denis Kenzior
parent 75b20ff1d0
commit b5c3fc1222
1 changed files with 1 additions and 1 deletions

View File

@ -1585,7 +1585,7 @@ class Main:
if self.args.valgrind:
ram = 512
else:
ram = 256
ram = 384
print("Using %d cores, %d RAM for VM" % (smp, ram))