2010-01-05 15:12:51 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
machine =
|
2010-01-05 15:12:51 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
2013-09-04 13:05:09 +02:00
|
|
|
{ imports = [ ./common/x11.nix ];
|
2010-01-05 16:32:14 +01:00
|
|
|
environment.systemPackages = [ pkgs.firefox ];
|
2010-01-05 15:12:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
2010-01-06 00:59:29 +01:00
|
|
|
$machine->waitForX;
|
|
|
|
$machine->execute("firefox file://${pkgs.valgrind}/share/doc/valgrind/html/index.html &");
|
2011-01-10 15:41:16 +01:00
|
|
|
$machine->waitForWindow(qr/Valgrind/);
|
|
|
|
$machine->sleep(40); # wait until Firefox has finished loading the page
|
2010-01-05 15:12:51 +01:00
|
|
|
$machine->screenshot("screen");
|
|
|
|
'';
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2010-01-05 15:12:51 +01:00
|
|
|
}
|