From 1a0eaede42a39461dff77c043a9a9226a3172ad7 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 1 Feb 2017 22:14:22 +0000 Subject: test_queue.rb: fix portability * test/thread/test_queue.rb (test_queue_with_trap): fix portability. use SIGINT instead of SIGUSR2 which is supported on not all platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/thread/test_queue.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/thread/test_queue.rb b/test/thread/test_queue.rb index 6122d9b87c..5ca6972ece 100644 --- a/test/thread/test_queue.rb +++ b/test/thread/test_queue.rb @@ -549,14 +549,14 @@ class TestQueue < Test::Unit::TestCase end def test_queue_with_trap - assert_in_out_err([], <<-INPUT, %w(USR2 USR2 exit), []) + assert_in_out_err([], <<-INPUT, %w(INT INT exit), []) q = Queue.new - trap(:USR2){ - q.push 'USR2' + trap(:INT){ + q.push 'INT' } Thread.new{ loop{ - Process.kill :USR2, $$ + Process.kill :INT, $$ } } puts q.pop -- cgit v1.2.3