summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-14 23:11:26 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-14 23:11:26 +0000
commit3074406bbeaefbc7f90fe5dfd705d0d5249befc5 (patch)
treecb90cb8455f55db983982ae49737a89bf24f1e49 /test/ruby
parent40f89c17e688d5b25e5dea93d8f4cc6ac61f744f (diff)
* test/ruby/test_thread.rb (TestThread::Thread::new.): remove
th.abort_on_exception change. Test template shouldn't change global flag. It prevent to test a normal case. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_thread.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index d06a7c80b8..71b400d421 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -7,7 +7,6 @@ class TestThread < Test::Unit::TestCase
Threads = []
def self.new(*)
th = super
- th.abort_on_exception = true
Threads << th
th
end