test/sandbox: rename misleading bind destination
Some checks failed
Test / Create distribution (push) Successful in 25s
Test / Fpkg (push) Successful in 34s
Test / Fortify (push) Failing after 1m40s
Test / Data race detector (push) Failing after 1m41s
Test / Flake checks (push) Has been skipped

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
Ophestra 2025-03-21 12:29:15 +09:00
parent a57a7a6a16
commit fd2e5754e3
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
3 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@
extraPaths = [
{
src = "/proc/mounts";
dst = "/.fortify/host-mounts";
dst = "/.fortify/mounts";
}
];
}

View File

@ -23,7 +23,7 @@ let
fortify = fs "16d" null null;
init0 = fs "80001ff" null null;
} null;
host-mounts = fs "124" null null;
mounts = fs "124" null null;
} null;
bin = fs "800001ed" { sh = fs "80001ff" null null; } null;
dev = fs "800001ed" {

View File

@ -62,7 +62,7 @@ let
import "git.gensokyo.uk/security/fortify/test/sandbox"
func main() { sandbox.MustAssertMounts("", "/.fortify/host-mounts", "${writeText "want-mounts.json" (builtins.toJSON wantMounts)}") }
func main() { sandbox.MustAssertMounts("", "/.fortify/mounts", "${writeText "want-mounts.json" (builtins.toJSON wantMounts)}") }
'';
in
buildGoModule {