summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKOSAKI Motohiro <kosaki.motohiro@gmail.com>2015-12-15 02:09:04 -0500
committerKOSAKI Motohiro <kosaki.motohiro@gmail.com>2015-12-24 03:10:28 -0500
commit5045edc83f0918884685516f1569671d538296bb (patch)
tree6997f1cd9400b215050b4c3b1b1216f8465a2637
parent6f04ae56885a212e86552e9f4b72c84ebc734581 (diff)
downloadruby-5045edc83f0918884685516f1569671d538296bb.tar.gz
* test/monitor/test_monitor.rb
(TestMonitor#test_enter_second_after_killed_thread): remove never reached statement for clarification.
-rw-r--r--ChangeLog6
-rw-r--r--test/monitor/test_monitor.rb1
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 093ebec3e0..130027c61e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Dec 15 16:09:04 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * test/monitor/test_monitor.rb
+ (TestMonitor#test_enter_second_after_killed_thread): remove
+ never reached statement for clarification.
+
Fri Dec 18 10:24:44 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
* lib/irb/ruby-lex.rb: fixed parse error for striped heredocument syntax.
diff --git a/test/monitor/test_monitor.rb b/test/monitor/test_monitor.rb
index 66c3e833ca..f4751cfbbd 100644
--- a/test/monitor/test_monitor.rb
+++ b/test/monitor/test_monitor.rb
@@ -38,7 +38,6 @@ class TestMonitor < Test::Unit::TestCase
th = Thread.start {
@monitor.enter
Thread.current.kill
- @monitor.exit
}
th.join
@monitor.enter