Test didn't run because it tried to create a VM with 4096M RAM but qemu-system-i386 has a hard 2047M memory limit. - reduce memory to 2047M on i686. - increase timeout 300s -> 1800s because the tests are much slower on i686 and timed out.
		
			
				
	
	
		
			22 lines
		
	
	
		
			658 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			658 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# 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" ];
 | 
						|
 | 
						|
    # 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;
 | 
						|
  };
 | 
						|
 | 
						|
  testScript = ''
 | 
						|
    $machine->succeed("gnome-desktop-testing-runner -t 1800"); # increase timeout to 1800s
 | 
						|
  '';
 | 
						|
})
 |