summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-25 10:53:09 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-08-25 10:54:10 +0200
commit619f18956da87517131ad4429b2c24e16796411d (patch)
treeb6ceef3aaa5608885d7f2cb43b61d8289c891b87 /nixos/tests
parent328306066265f2fc559fd2f8b00b277e1c5ea66a (diff)
Bump the amount of memory for the installer test
It randomly OOMs.

http://hydra.nixos.org/build/13587153
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/installer.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index d3bbe7a8bd55e..621afffbfc1f9 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -98,7 +98,7 @@ let
       # FIXME: OVMF doesn't boot from virtio http://www.mail-archive.com/edk2-devel@lists.sourceforge.net/msg01501.html
       iface = if useEFI || grubVersion == 1 then "scsi" else "virtio";
       qemuFlags =
-        (if iso.system == "x86_64-linux" then "-m 512 " else "-m 384 ") +
+        (if iso.system == "x86_64-linux" then "-m 768 " else "-m 512 ") +
         (optionalString (iso.system == "x86_64-linux") "-cpu kvm64 ") +
         (optionalString useEFI ''-L ${efiBios} -hda ''${\(Cwd::abs_path('harddisk'))} '');
       hdFlags = optionalString (!useEFI)