summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-29 11:45:59 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-11-29 11:45:59 +0000
commit42225163c17a8d0862245beefdbd513469cf79bb (patch)
tree92afa9c2628f6eb5e4cb23415468fbdbd13bbcc3 /test
parentfc0c2d1cc2f4ec1fb15c73e91cc8aa8d19854c8a (diff)
SIGTERM should be also captured
because it will terminate the whole test process when it is re-raised from this assertion. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52789 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/lib/envutil.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/envutil.rb b/test/lib/envutil.rb
index 4faeabb995..0fb26b0c52 100644
--- a/test/lib/envutil.rb
+++ b/test/lib/envutil.rb
@@ -375,7 +375,7 @@ module Test
assert(status.success?, "#{message} (#{status.inspect})")
end
- ABORT_SIGNALS = Signal.list.values_at(*%w"ILL ABRT BUS SEGV")
+ ABORT_SIGNALS = Signal.list.values_at(*%w"ILL ABRT BUS SEGV TERM")
def assert_separately(args, file = nil, line = nil, src, ignore_stderr: nil, **opt)
unless file and line