From d37c766aa8820daf949fd9b43f46e4179fd921f2 Mon Sep 17 00:00:00 2001 From: venkkatesh-sekar <94061546+venkkatesh-sekar@users.noreply.github.com> Date: Tue, 4 Mar 2025 16:12:01 +0100 Subject: [PATCH] chore(fuzzing): Add `fcntl` to the sandbox monitor whitelist (#4217) Corresponding [failure](https://github.com/dfinity/ic/actions/runs/13637443383/job/38119562486#step:4:1199) observed on the hourly pipeline --- rs/execution_environment/fuzz/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rs/execution_environment/fuzz/src/lib.rs b/rs/execution_environment/fuzz/src/lib.rs index 8ed0a17686a..1677ec43ab6 100644 --- a/rs/execution_environment/fuzz/src/lib.rs +++ b/rs/execution_environment/fuzz/src/lib.rs @@ -108,6 +108,7 @@ where Sysno::sendmsg, Sysno::sigaltstack, Sysno::futex, + Sysno::fcntl, Sysno::close, Sysno::restart_syscall, ]);