From 41cd14f5db601365b388964135ec678bb6fbbc14 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 25 Feb 2024 22:16:27 -0500 Subject: [PATCH] suppress interrupt trace from SIGTERM test --- test/distributed_exec.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/distributed_exec.jl b/test/distributed_exec.jl index 8e880bc98868a..7b5c983da1bf9 100644 --- a/test/distributed_exec.jl +++ b/test/distributed_exec.jl @@ -1920,6 +1920,8 @@ begin remote_do(w) do # Cause the 'exit()' message that `rmprocs()` sends to do nothing Core.eval(Base, :(exit() = nothing)) + # Hide the trace that `rmprocs()` will cause this worker to show + redirect_stderr(devnull) end wait(rmprocs([w])) end