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

Skip on Windows now when using reline because it causes hang of whole tests

This commit is contained in:
NAKAMURA Usaku 2019-04-30 19:45:44 +09:00
parent 5a83a1d554
commit 830e40ee05
No known key found for this signature in database
GPG key ID: C5FE8AEA64F81259

View file

@ -688,4 +688,5 @@ class TestReadline < Test::Unit::TestCase
SRC
return true
end
end if defined?(::Readline)
end if defined?(::Readline) && !(/mswin|mingw/ =~ RUBY_PLATFORM && defined?(Reline) && Readline == Reline)
# skip on Windows now when using reline because it causes hang of whole tests