at 23.11-pre 341 B view raw
1{ pkgs, makeInstalledTest, ... }: 2 3makeInstalledTest { 4 tested = pkgs.gdk-pixbuf; 5 6 testConfig = { 7 # Tests allocate a lot of memory trying to exploit a CVE 8 # but qemu-system-i386 has a 2047M memory limit 9 virtualisation.memorySize = if pkgs.stdenv.isi686 then 2047 else 4096; 10 }; 11 12 testRunnerFlags = [ "--timeout" "1800" ]; 13}