summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-21 10:47:07 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-21 10:47:07 +0000
commitcb138bbaa6fdec9e9e8f6821e23130d6397677cd (patch)
treede6658b9907979ac263fefb0a35437a8b05b740d
parente49f890906507b49ac81328e1e7b68d2fea59226 (diff)
* test/ruby/test_thread.rb (TestThread#test_priority): enable
this test again. Current GVL respect thread priority rather than past. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--test/ruby/test_thread.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e0b61df2bb..791d52c15d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Jun 21 19:46:23 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * test/ruby/test_thread.rb (TestThread#test_priority): enable
+ this test again. Current GVL respect thread priority rather
+ than past.
+
Tue Jun 21 13:25:35 2011 TAKAO Kouji <kouji@takao7.net>
* ext/readline/readline.c (readline_getc): applied a patch in
diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb
index 524a4fd14c..daccadde78 100644
--- a/test/ruby/test_thread.rb
+++ b/test/ruby/test_thread.rb
@@ -243,7 +243,7 @@ class TestThread < Test::Unit::TestCase
end
t1.kill
t2.kill
- # assert_operator(c1, :>, c2, "[ruby-dev:33124]") # not guaranteed
+ assert_operator(c1, :>, c2, "[ruby-dev:33124]") # not guaranteed
end
def test_new