From ccea30b8d8970acf9c1826c5c988d819aabf2d0f Mon Sep 17 00:00:00 2001 From: David Steele Date: Sat, 14 Dec 2019 10:20:23 -0500 Subject: [PATCH] Increase memory in ramdisk for Travis CI testing. The co6 tests were occasionally running out of space so bump up the size of the ramdisk a bit to hopefully prevent this. A longer term solution would be to disable the trace-level file logs when running on Travis CI since they seem to be using most of the space. --- test/travis.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/travis.pl b/test/travis.pl index b56274123..ba16fb677 100755 --- a/test/travis.pl +++ b/test/travis.pl @@ -138,7 +138,7 @@ eval processBegin('mount tmpfs'); processExec('mkdir -p -m 770 test'); - processExec('sudo mount -t tmpfs -o size=2560m tmpfs test'); + processExec('sudo mount -t tmpfs -o size=3072m tmpfs test'); processExec('df -h test', {bShowOutputAsync => true}); processEnd();