summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_exception.rb2
-rw-r--r--test/ruby/test_weakmap.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb
index e9d41e43dc..9908331689 100644
--- a/test/ruby/test_exception.rb
+++ b/test/ruby/test_exception.rb
@@ -423,7 +423,7 @@ class TestException < Test::Unit::TestCase
end
def test_thread_signal_location
- pend('TODO: a known bug [Bug #14474]')
+ # pend('TODO: a known bug [Bug #14474]')
_, stderr, _ = EnvUtil.invoke_ruby(%w"--disable-gems -d", <<-RUBY, false, true)
Thread.start do
Thread.current.report_on_exception = false
diff --git a/test/ruby/test_weakmap.rb b/test/ruby/test_weakmap.rb
index 92a1a57f5b..29225aaf43 100644
--- a/test/ruby/test_weakmap.rb
+++ b/test/ruby/test_weakmap.rb
@@ -59,7 +59,7 @@ class TestWeakMap < Test::Unit::TestCase
assert_weak_include(m, k)
end
GC.start
- pend('TODO: failure introduced from r60440')
+ # pend('TODO: failure introduced from r60440')
assert_not_send([@wm, m, k])
end
alias test_member? test_include?