aboutsummaryrefslogtreecommitdiffstats
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
parent40f89c17e688d5b25e5dea93d8f4cc6ac61f744f (diff)
downloadruby-3074406bbeaefbc7f90fe5dfd705d0d5249befc5.tar.gz
* 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
-rw-r--r--ChangeLog6
-rw-r--r--test/ruby/test_thread.rb1
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8f9936e2da..b447b5906b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Sat Dec 15 08:02:11 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * 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.
+
Sat Dec 15 06:15:14 2012 Eric Hodel <drbrain@segment7.net>
* configure.in (HAVE_GCC_ATOMIC_BUILTINS): Set -march=i486 to enable
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