aboutsummaryrefslogtreecommitdiffstats
path: root/test/readline
diff options
context:
space:
mode:
authorNAKAMURA Usaku <usa@ruby-lang.org>2019-04-30 19:45:44 +0900
committerNAKAMURA Usaku <usa@ruby-lang.org>2019-04-30 19:45:44 +0900
commit830e40ee05681a9230d523c1ca8b4bd3238fcfbf (patch)
tree2be18f6a7c9a36907c32b43560f2ed12b504de60 /test/readline
parent5a83a1d55454d42cbf5b0bcc9df9c9c83e3a39d7 (diff)
downloadruby-830e40ee05681a9230d523c1ca8b4bd3238fcfbf.tar.gz
Skip on Windows now when using reline because it causes hang of whole tests
Diffstat (limited to 'test/readline')
-rw-r--r--test/readline/test_readline.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/readline/test_readline.rb b/test/readline/test_readline.rb
index 1d29d9c81c..80208b9c07 100644
--- a/test/readline/test_readline.rb
+++ b/test/readline/test_readline.rb
@@ -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