diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2023-01-27 15:11:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-27 15:11:48 +0100 |
commit | ccaadc957593522e9b46336eb5afa45ff876f13f (patch) | |
tree | 092377073700d884fceffcd1c1453023369f5647 /tests/nixos/containers/id-test.nix | |
parent | ed479aafdc03f2e7428f182549cedab947824300 (diff) | |
parent | 3c08a3e6b68135af126a05e9e3be417b604edded (diff) |
Merge pull request #7648 from hercules-ci/move-nixos-tests
Move nixos tests
Diffstat (limited to 'tests/nixos/containers/id-test.nix')
-rw-r--r-- | tests/nixos/containers/id-test.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/nixos/containers/id-test.nix b/tests/nixos/containers/id-test.nix new file mode 100644 index 000000000..8eb9d38f9 --- /dev/null +++ b/tests/nixos/containers/id-test.nix @@ -0,0 +1,8 @@ +{ name, uidRange ? false }: + +with import <nixpkgs> {}; + +runCommand name + { requiredSystemFeatures = if uidRange then ["uid-range"] else []; + } + "id; id > $out" |