mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
f4ea1208ec
*Flags implies a list slightly relevant: > stdenv: start deprecating non-list configureFlags https://github.com/NixOS/nixpkgs/pull/173172 the makeInstalledTests function in `nixos/tests/installed-tests/default.nix` isn't available outside of nixpkgs so it's not a breaking change
14 lines
341 B
Nix
14 lines
341 B
Nix
{ pkgs, makeInstalledTest, ... }:
|
|
|
|
makeInstalledTest {
|
|
tested = pkgs.gdk-pixbuf;
|
|
|
|
testConfig = {
|
|
# Tests allocate a lot of memory trying to exploit a CVE
|
|
# but qemu-system-i386 has a 2047M memory limit
|
|
virtualisation.memorySize = if pkgs.stdenv.isi686 then 2047 else 4096;
|
|
};
|
|
|
|
testRunnerFlags = [ "--timeout" "1800" ];
|
|
}
|