2013-09-16 16:15:42 +01:00
|
|
|
# Test whether fast reboots via kexec work.
|
|
|
|
|
2019-12-24 15:17:39 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ...} : {
|
2014-06-28 15:04:49 +01:00
|
|
|
name = "kexec";
|
2019-12-24 15:17:39 +00:00
|
|
|
meta = with lib.maintainers; {
|
2019-02-22 15:14:13 +00:00
|
|
|
maintainers = [ eelco ];
|
2019-12-24 15:17:39 +00:00
|
|
|
# Currently hangs forever; last output is:
|
|
|
|
# machine # [ 10.239914] dhcpcd[707]: eth0: adding default route via fe80::2
|
|
|
|
# machine: waiting for the VM to finish booting
|
|
|
|
# machine # Cannot find the ESP partition mount point.
|
|
|
|
# machine # [ 28.681197] nscd[692]: 692 checking for monitored file `/etc/netgroup': No such file or directory
|
|
|
|
broken = true;
|
2015-07-12 11:09:40 +01:00
|
|
|
};
|
2013-09-16 16:15:42 +01:00
|
|
|
|
2018-07-20 21:56:59 +01:00
|
|
|
machine = { ... }:
|
2013-09-16 16:15:42 +01:00
|
|
|
{ virtualisation.vlans = [ ]; };
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
2019-12-24 15:17:39 +00:00
|
|
|
machine.wait_for_unit("multi-user.target")
|
|
|
|
machine.execute("systemctl kexec &")
|
|
|
|
machine.connected = False
|
|
|
|
machine.wait_for_unit("multi-user.target")
|
2013-09-16 16:15:42 +01:00
|
|
|
'';
|
2015-07-12 11:09:40 +01:00
|
|
|
})
|