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
Родитель 5a83a1d554
Коммит 830e40ee05
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C5FE8AEA64F81259
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

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