Add SIGABRT to reserved signals in bundler spec

This commit is contained in:
Peter Zhu 2025-11-23 20:36:52 -05:00
parent 2315349b8a
commit 35445a736f
Notes: git 2025-11-24 22:33:21 +00:00

View File

@ -1020,7 +1020,7 @@ RSpec.describe "bundle exec" do
context "signal handling" do
let(:test_signals) do
open3_reserved_signals = %w[CHLD CLD PIPE]
reserved_signals = %w[SEGV BUS ILL FPE VTALRM KILL STOP EXIT]
reserved_signals = %w[SEGV BUS ILL FPE ABRT IOT VTALRM KILL STOP EXIT]
bundler_signals = %w[INT]
Signal.list.keys - (bundler_signals + reserved_signals + open3_reserved_signals)