From d0ddd7193407af4162312469f19bd02af4d4bce1 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 14 Sep 2025 14:59:53 +0900 Subject: test/sandbox: bind /var/tmp writable This makes it possible to place markers with private tmpdir. Signed-off-by: Ophestra --- test/sandbox/case/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test/sandbox/case/default.nix') diff --git a/test/sandbox/case/default.nix b/test/sandbox/case/default.nix index acf30d7a..96a12a60 100644 --- a/test/sandbox/case/default.nix +++ b/test/sandbox/case/default.nix @@ -64,6 +64,18 @@ let "-s" tc.expectedFilter.${system} ]; + + extraPaths = + if tc.useCommonPaths then + [ ] + else + [ + { + type = "bind"; + src = "/var/tmp"; + write = true; + } + ]; }; testCaseName = name: "cat.gensokyo.hakurei.test." + name; -- cgit v1.3.1