aboutsummaryrefslogtreecommitdiffstats
path: root/test/thread
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-22 06:59:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-22 06:59:41 +0000
commit06d2e8aaf7fe60a09245963f2f69feb5685db8f0 (patch)
treecf16b4a202de07e9015cd42287c2a10def86cd6c /test/thread
parenta658a5ae530e0cacc1f499899807c2d05a1f61ed (diff)
downloadruby-06d2e8aaf7fe60a09245963f2f69feb5685db8f0.tar.gz
thread/thread.c: no dup
* ext/thread/thread.c (Init_thread): ConditionVariable and Queue are not able to copy. [ruby-core:59961] [Bug #9440] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44681 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/thread')
-rw-r--r--test/thread/test_cv.rb8
-rw-r--r--test/thread/test_queue.rb8
2 files changed, 16 insertions, 0 deletions
diff --git a/test/thread/test_cv.rb b/test/thread/test_cv.rb
index 9a9b407a5b..92179e8e45 100644
--- a/test/thread/test_cv.rb
+++ b/test/thread/test_cv.rb
@@ -188,4 +188,12 @@ INPUT
assert_nothing_raised(Exception) { mutex.synchronize {condvar.broadcast} }
end
+
+ def test_dup
+ bug9440 = '[ruby-core:59961] [Bug #9440]'
+ condvar = ConditionVariable.new
+ assert_raise(NoMethodError, bug9440) do
+ condvar.dup
+ end
+ end
end
diff --git a/test/thread/test_queue.rb b/test/thread/test_queue.rb
index bf8344fade..07a611ddd2 100644
--- a/test/thread/test_queue.rb
+++ b/test/thread/test_queue.rb
@@ -200,4 +200,12 @@ class TestQueue < Test::Unit::TestCase
timeout(1) { th2.join }
end
end
+
+ def test_dup
+ bug9440 = '[ruby-core:59961] [Bug #9440]'
+ q = Queue.new
+ assert_raise(NoMethodError, bug9440) do
+ q.dup
+ end
+ end
end