mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
test_readline.rb: skip readline test for new solaris11s-sunc
for now. This should be fixed, but let me make this new CI green first to introduce Solaris-related changes later. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b0b0ded5aa
commit
0bbf1eb754
1 changed files with 4 additions and 0 deletions
|
@ -597,6 +597,10 @@ class TestReadline < Test::Unit::TestCase
|
|||
|
||||
def test_completion_quote_character_after_completion
|
||||
return unless Readline.respond_to?(:completion_quote_character)
|
||||
if /solaris/i =~ RUBY_PLATFORM
|
||||
# http://rubyci.s3.amazonaws.com/solaris11s-sunc/ruby-trunk/log/20181228T102505Z.fail.html.gz
|
||||
skip 'This test does not succeed on Oracle Developer Studio for now'
|
||||
end
|
||||
|
||||
Readline.completion_proc = -> (_) { [] }
|
||||
Readline.completer_quote_characters = "'\""
|
||||
|
|
Loading…
Reference in a new issue