From 113b1c76fc9ace9f12f83e5edc7d4dadcc708c17 Mon Sep 17 00:00:00 2001 From: ktsj Date: Sat, 7 Sep 2013 04:58:38 +0000 Subject: * variable.c (classname): the name of class that has non class id should not be nil. This bug was introduced in r36577. * test/thread/test_cv.rb: test for change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42867 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/thread/test_cv.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test/thread/test_cv.rb') diff --git a/test/thread/test_cv.rb b/test/thread/test_cv.rb index eeec3b3ea5..9a9b407a5b 100644 --- a/test/thread/test_cv.rb +++ b/test/thread/test_cv.rb @@ -82,20 +82,23 @@ class TestConditionVariable < Test::Unit::TestCase end def test_condvar_wait_deadlock - assert_in_out_err([], <<-INPUT, ["No live threads left. Deadlock?"], []) + assert_in_out_err([], <<-INPUT, ["fatal", "No live threads left. Deadlock?"], []) require "thread" mutex = Mutex.new cv = ConditionVariable.new + klass = nil mesg = nil begin mutex.lock cv.wait mutex mutex.unlock rescue Exception => e + klass = e.class mesg = e.message end + puts klass print mesg INPUT end -- cgit v1.2.3