diff options
| author | Peter Zhu <peter@peterzhu.ca> | 2025-11-23 20:36:52 -0500 |
|---|---|---|
| committer | Peter Zhu <peter@peterzhu.ca> | 2025-11-24 14:32:53 -0800 |
| commit | 35445a736f509e6edbba8a08d8e4af69c206368a (patch) | |
| tree | 49fc899342d77c676b0fc978a80bce87ba93863c | |
| parent | 2315349b8ac10b1b4468ed10dabcb348a10bca0a (diff) | |
Add SIGABRT to reserved signals in bundler spec
| -rw-r--r-- | spec/bundler/commands/exec_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/commands/exec_spec.rb b/spec/bundler/commands/exec_spec.rb index 1ac308bdda..19e836053f 100644 --- a/spec/bundler/commands/exec_spec.rb +++ b/spec/bundler/commands/exec_spec.rb @@ -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) |
