grsecurity: add NixOS VM test

Changed files
+20
nixos
+1
nixos/release.nix
···
#tests.gitlab = callTest tests/gitlab.nix {};
tests.gnome3 = callTest tests/gnome3.nix {};
tests.gnome3-gdm = callTest tests/gnome3-gdm.nix {};
+
tests.grsecurity = callTest tests/grsecurity.nix {};
tests.i3wm = callTest tests/i3wm.nix {};
tests.installer.grub1 = forAllSystems (system: hydraJob (import tests/installer.nix { inherit system; }).grub1.test);
tests.installer.lvm = forAllSystems (system: hydraJob (import tests/installer.nix { inherit system; }).lvm.test);
+19
nixos/tests/grsecurity.nix
···
+
# Basic test to make sure grsecurity works
+
+
import ./make-test.nix ({ pkgs, ...} : {
+
name = "grsecurity";
+
meta = with pkgs.stdenv.lib.maintainers; {
+
maintainers = [ copumpkin ];
+
};
+
+
machine = { config, pkgs, ... }:
+
{ boot.kernelPackages = pkgs.linuxPackages_grsec_testing_server; };
+
+
testScript =
+
''
+
$machine->succeed("uname -a") =~ /grsec/;
+
# FIXME: this seems to hang the whole test. Unclear why, but let's fix it
+
# $machine->succeed("${pkgs.paxtest}/bin/paxtest blackhat");
+
'';
+
})
+