Merge pull request #17759 from Homebrew/revert-17719-sandbox_process_signals
This commit is contained in:
commit
3db7d01978
@ -302,7 +302,6 @@ class Sandbox
|
|||||||
(literal "/bin/ps")
|
(literal "/bin/ps")
|
||||||
(with no-sandbox)
|
(with no-sandbox)
|
||||||
) ; allow certain processes running without sandbox
|
) ; allow certain processes running without sandbox
|
||||||
(deny signal (target others)) ; deny sending signals to other processes
|
|
||||||
(allow default) ; allow everything else
|
(allow default) ; allow everything else
|
||||||
ERB
|
ERB
|
||||||
|
|
||||||
|
|||||||
@ -129,22 +129,4 @@ RSpec.describe Sandbox, :needs_macos do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "disallow sending signal to other processes" do
|
|
||||||
# we have to spawn a process, otherwise kill doesn't try to send a signal if the process doesn't exist
|
|
||||||
let(:pid) do
|
|
||||||
pid = spawn("sleep 1000")
|
|
||||||
sleep 0.1 # Ensure the process has started
|
|
||||||
pid
|
|
||||||
end
|
|
||||||
|
|
||||||
after do
|
|
||||||
Process.kill("KILL", pid)
|
|
||||||
Process.wait(pid)
|
|
||||||
end
|
|
||||||
|
|
||||||
it "sandbox stops signal to other processes" do
|
|
||||||
expect { sandbox.exec "kill", "-SIGTERM", pid.to_s }.to raise_error(ErrorDuringExecution)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user