aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/case/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/sandbox/case/default.nix')
-rw-r--r--test/sandbox/case/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/sandbox/case/default.nix b/test/sandbox/case/default.nix
index 05a13de1..6c7cf127 100644
--- a/test/sandbox/case/default.nix
+++ b/test/sandbox/case/default.nix
@@ -1,4 +1,4 @@
-lib: testProgram:
+system: lib: testProgram:
let
fs = mode: dir: data: {
mode = lib.fromHexString mode;
@@ -43,13 +43,17 @@ let
device
mapRealUid
useCommonPaths
+ userns
;
share = testProgram;
packages = [ ];
path = "${testProgram}/bin/hakurei-test";
args = [
"test"
+ "-t"
(toString (builtins.toFile "hakurei-${tc.name}-want.json" (builtins.toJSON tc.want)))
+ "-s"
+ tc.expectedFilter.${system}
];
};
@@ -60,4 +64,5 @@ in
${testCaseName "tty"} = callTestCase ./tty.nix 2;
${testCaseName "mapuid"} = callTestCase ./mapuid.nix 3;
${testCaseName "device"} = callTestCase ./device.nix 4;
+ ${testCaseName "pdlike"} = callTestCase ./pdlike.nix 5;
}