Remove unnecessary calls to abort_on_exception

This commit is contained in:
Nate Berkopec 2019-08-18 08:12:47 +00:00
parent 4d7542e75f
commit 5f84f37944
No known key found for this signature in database
GPG Key ID: BDD7A4B8E43906A6
4 changed files with 0 additions and 8 deletions

View File

@ -51,7 +51,6 @@ class TestCLI < Minitest::Test
"test/rackup/lobster.ru"], @events
t = Thread.new do
Thread.current.abort_on_exception = true
cli.run
end
@ -83,7 +82,6 @@ class TestCLI < Minitest::Test
"test/rackup/lobster.ru"], @events
t = Thread.new { cli.run }
t.abort_on_exception = true
wait_booted
@ -117,7 +115,6 @@ class TestCLI < Minitest::Test
"test/rackup/lobster.ru"], @events
t = Thread.new { cli.run }
t.abort_on_exception = true
wait_booted
@ -141,7 +138,6 @@ class TestCLI < Minitest::Test
"test/rackup/lobster.ru"], @events
t = Thread.new { cli.run }
t.abort_on_exception = true
wait_booted
@ -161,7 +157,6 @@ class TestCLI < Minitest::Test
"test/rackup/lobster.ru"], @events
t = Thread.new do
Thread.current.abort_on_exception = true
cli.run
end

View File

@ -83,7 +83,6 @@ class TestPumaControlCli < Minitest::Test
control_cli = Puma::ControlCLI.new (opts + ["start"]), @ready, @ready
t = Thread.new do
Thread.current.abort_on_exception = true
control_cli.run
end

View File

@ -30,7 +30,6 @@ class TestPathHandler < Minitest::Test
@launcher = s
end
end
thread.abort_on_exception = true
# Wait for launcher to boot
Timeout.timeout(10) do

View File

@ -38,7 +38,6 @@ ARGV[1].to_i.times do
do_test(st, size)
end
t.abort_on_exception = true
threads << t
end