mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
20 lines
464 B
Nix
20 lines
464 B
Nix
# Test whether fast reboots via kexec work.
|
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "kexec";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ eelco chaoflow ];
|
|
};
|
|
|
|
machine = { ... }:
|
|
{ virtualisation.vlans = [ ]; };
|
|
|
|
testScript =
|
|
''
|
|
$machine->waitForUnit("multi-user.target");
|
|
$machine->execute("systemctl kexec &");
|
|
$machine->{connected} = 0;
|
|
$machine->waitForUnit("multi-user.target");
|
|
'';
|
|
})
|