postgresqlPackages.sqlite_fdw: 2.4.0 -> 2.5.0 (#364337)
[NixPkgs.git] / nixos / tests / installed-tests / gdk-pixbuf.nix
blobecc29f8e6f15115700aa823253fa8686521ae15b
1 { pkgs, makeInstalledTest, ... }:
3 makeInstalledTest {
4   tested = pkgs.gdk-pixbuf;
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.hostPlatform.isi686 then 2047 else 4096;
10   };
12   testRunnerFlags = [
13     "--timeout"
14     "1800"
15   ];