From b5c3fc12228e69e6c8d7b3a755a9b5e374a66444 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 29 Jul 2021 15:21:50 -0700 Subject: [PATCH] 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. --- tools/test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner b/tools/test-runner index 2d4b6b5a..ff7d9586 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -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))