Try to run test_interrupt_in_other_thread with Editline

This commit is contained in:
aycabta 2021-08-12 15:34:54 +09:00
Родитель 7ac440910c
Коммит c66b27efbb
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -477,10 +477,9 @@ module BasetestReadline
end
end
# TODO Green CI for arm32-linux (Travis CI), Editline, and Readline 7.0.
# TODO Green CI for arm32-linux (Travis CI) and Readline 7.0.
def test_interrupt_in_other_thread
# Editline and Readline 7.0 can't treat I/O that is not tty.
omit "Skip Editline" if /EditLine/n.match(Readline::VERSION)
# Readline 7.0 can't treat I/O that is not tty.
omit "Skip Readline 7.0" if Readline::VERSION == "7.0"
omit unless respond_to?(:assert_ruby_status)
omit if /mswin|mingw/ =~ RUBY_PLATFORM