1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Remove outdated skips

This commit is contained in:
Nobuyoshi Nakada 2022-01-16 18:18:05 +09:00
parent a4a7bf2a63
commit 5ec3450438
Notes: git 2022-01-16 21:35:40 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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?