diff options
author | Ludovic Courtès <ludo@gnu.org> | 2025-03-15 22:03:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-03-23 19:30:32 +0100 |
commit | 14f10a1f83d71ffa9ff64f99fe72bafd04c544f8 (patch) | |
tree | e583cfba928ba49989361103215a80dacaa498fc | |
parent | 30a5ada6beb2c57d803b992af583ab42e2a9b523 (diff) | |
download | guix-14f10a1f83d71ffa9ff64f99fe72bafd04c544f8.tar.gz guix-14f10a1f83d71ffa9ff64f99fe72bafd04c544f8.zip |
tests: ganeti: Increase VM memory size.
* gnu/tests/ganeti.scm (run-ganeti-test): Pass ‘-m 1024’ to
‘make-marionette’.
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: I82c8a0eb37c16079f1affe793afc0d8a773c62c8
-rw-r--r-- | gnu/tests/ganeti.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/ganeti.scm b/gnu/tests/ganeti.scm index 42ed58d977..140950776e 100644 --- a/gnu/tests/ganeti.scm +++ b/gnu/tests/ganeti.scm @@ -117,7 +117,7 @@ (gnu build marionette)) (define marionette - (make-marionette (list #$vm))) + (make-marionette (list #$vm "-m" "1024"))) (test-runner-current (system-test-runner #$output)) (test-begin "ganeti") |