summary refs log tree commit diff
path: root/nixos/tests/gdk-pixbuf.nix
blob: b20f61b5ffe26010dcdb96544a537485df513d71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# run installed tests
import ./make-test.nix ({ pkgs, ... }: {
  name = "gdk-pixbuf";

  meta = {
    maintainers = pkgs.gdk_pixbuf.meta.maintainers;
  };

  machine = { pkgs, ... }: {
    environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
    environment.variables.XDG_DATA_DIRS = [ "${pkgs.gdk_pixbuf.installedTests}/share" ];

    virtualisation.memorySize = 4096; # Tests allocate a lot of memory trying to exploit a CVE
  };

  testScript = ''
    $machine->succeed("gnome-desktop-testing-runner");
  '';
})