aboutsummaryrefslogtreecommitdiffhomepage
path: root/sandbox/container_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-03-23 05:27:57 +0900
committerOphestra <cat@gensokyo.uk>2025-03-23 05:27:57 +0900
commitc6381932684a45aff6c187d53e5568bf52444457 (patch)
treeb837c39d86d8b65973a6b088987cbb507028b9fd /sandbox/container_test.go
parent8c3a81788188bbafbd824abbd1efe91e79a5e21e (diff)
sandbox: apply vfs options to bind mounts
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'sandbox/container_test.go')
-rw-r--r--sandbox/container_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/container_test.go b/sandbox/container_test.go
index c8bdcd0e..13063600 100644
--- a/sandbox/container_test.go
+++ b/sandbox/container_test.go
@@ -111,7 +111,7 @@ func TestContainer(t *testing.T) {
mnt = append(mnt,
&check.Mntent{FSName: "tmpfs", Dir: "/tmp", Type: "tmpfs", Opts: "host_passthrough"},
&check.Mntent{FSName: "\x00", Dir: os.Args[0], Type: "\x00", Opts: "\x00"},
- &check.Mntent{FSName: "rootfs", Dir: "/etc/hostname", Type: "tmpfs", Opts: "host_passthrough"},
+ &check.Mntent{FSName: "rootfs", Dir: "/etc/hostname", Type: "tmpfs", Opts: "\x00"},
)
for _, name := range libPaths {
mnt = append(mnt, &check.Mntent{FSName: "\x00", Dir: name, Type: "\x00", Opts: "\x00", Freq: -1, Passno: -1})