diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-29T12·19+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-29T14·14+0200 |
commit | 1d9ab273bad34b004dfcfd486273d0df5fed1eca (patch) | |
tree | b18e5c90148418b461951da392f86f2237634316 /release.nix | |
parent | cf93397d3f1d2a8165a100482d07b7f4b7e5bf7f (diff) |
Add test for setuid seccomp filter
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/release.nix b/release.nix index 1e854a075f6d..ec6bda995771 100644 --- a/release.nix +++ b/release.nix @@ -219,6 +219,11 @@ let nix = build.x86_64-linux; system = "x86_64-linux"; }); + tests.setuid = pkgs.lib.genAttrs (pkgs.lib.filter (pkgs.lib.hasSuffix "-linux") systems) (system: + import ./tests/setuid.nix rec { + nix = build.${system}; inherit system; + }); + tests.binaryTarball = with import <nixpkgs> { system = "x86_64-linux"; }; vmTools.runInLinuxImage (runCommand "nix-binary-tarball-test" |