about summary refs log tree commit diff
path: root/nixos/tests/kernel-params.nix
blob: 14a393356911bf76d84b101329c08abeef7d9571 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import ./make-test.nix ({ pkgs, ...} : {
  name = "kernel-params";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ nequissimus ];
  };

  machine = { config, lib, pkgs, ... }:
    {
      boot.kernelPackages = pkgs.linuxPackages;
      boot.kernelParams = [
        "nohibernate"
        "page_poison=1"
        "vsyscall=none"
      ];
    };

  testScript =
    ''
      $machine->fail("cat /proc/cmdline | grep page_poison=0");
      $machine->succeed("cat /proc/cmdline | grep nohibernate");
      $machine->succeed("cat /proc/cmdline | grep page_poison=1");
      $machine->succeed("cat /proc/cmdline | grep vsyscall=none");
    '';
})