From 52e3324ef44b5f5607d363bb3608100a7b62cf5b Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 14 Oct 2025 07:08:39 +0900 Subject: [PATCH] test/sandbox: ignore nondeterministic mount point No idea what systemd is doing with this to cause its options to change. Signed-off-by: Ophestra --- test/sandbox/case/device.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sandbox/case/device.nix b/test/sandbox/case/device.nix index a8aba8b..a6de9b7 100644 --- a/test/sandbox/case/device.nix +++ b/test/sandbox/case/device.nix @@ -214,8 +214,8 @@ in (ent "/" "/.hakurei" "rw,nosuid,nodev,relatime" "tmpfs" "ephemeral" "rw,size=4k,mode=755,uid=1000004,gid=1000004") (ent "/" "/dev" "rw,nosuid" "devtmpfs" "devtmpfs" ignore) (ent "/" "/dev/pts" "rw,nosuid,noexec,relatime" "devpts" "devpts" "rw,gid=3,mode=620,ptmxmode=666") - (ent "/" "/dev/shm" "rw,nosuid,nodev" "tmpfs" "tmpfs" "rw") - (ent "/" ignore ignore ignore ignore ignore) # order not deterministic + (ent "/" ignore ignore ignore ignore ignore) # not deterministic + (ent "/" ignore ignore ignore ignore ignore) (ent "/" ignore ignore ignore ignore ignore) (ent "/" "/dev/shm" "rw,nosuid,nodev,relatime" "tmpfs" "ephemeral" "rw,uid=1000004,gid=1000004") (ent "/bin" "/bin" "ro,nosuid,nodev,relatime" "ext4" "/dev/disk/by-label/nixos" "rw")