diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-06 07:18:01 +0000 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-10-06 07:18:01 +0000 |
commit | 5ec0c48fd457c9f68f0cbaa3b7dec9dc780b17ae (patch) | |
tree | 2dbeeae9aa1493f093a6b84c00047caf29787af7 /gnu/tests | |
parent | 161d1a94af7f5a41bb58c23d785a68ac2e30c029 (diff) |
tests: gitile: Increase VM memory size.
* gnu/tests/version-control.scm (run-gitile-test): Increase memory size to
1024 MiB.
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/version-control.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/tests/version-control.scm b/gnu/tests/version-control.scm index 092591f40d..fd3dba88ba 100644 --- a/gnu/tests/version-control.scm +++ b/gnu/tests/version-control.scm @@ -449,7 +449,8 @@ HTTP-PORT." (define vm (virtual-machine (operating-system os) - (port-forwardings `((8081 . ,http-port))))) + (port-forwardings `((8081 . ,http-port))) + (memory-size 1024))) (define test (with-imported-modules '((gnu build marionette)) |