summary refs log tree commit diff
path: root/nixos/tests/kexec.nix
blob: db596189d46d0cca52741faa144c5cf463545c70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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");
    '';
})