ruby-changes:53090
From: kazu <ko1@a...>
Date: Mon, 22 Oct 2018 21:21:27 +0900 (JST)
Subject: [ruby-changes:53090] kazu:r65304 (trunk): Add debug option to check ci failures on solaris
kazu 2018-10-22 21:21:19 +0900 (Mon, 22 Oct 2018) New Revision: 65304 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65304 Log: Add debug option to check ci failures on solaris failed to start extserv?: - https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11s/ruby-trunk/log/20181020T132506Z.fail.html.gz BUG in sysread of OpenSSL: - https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable11x/ruby-trunk/log/20181020T132408Z.fail.html.gz - https://rubyci.org/logs/rubyci.s3.amazonaws.com/unstable10x/ruby-trunk/log/20181020T131807Z.fail.html.gz Modified files: trunk/test/drb/drbtest.rb Index: test/drb/drbtest.rb =================================================================== --- test/drb/drbtest.rb (revision 65303) +++ test/drb/drbtest.rb (revision 65304) @@ -11,6 +11,9 @@ class DRbService https://github.com/ruby/ruby/blob/trunk/test/drb/drbtest.rb#L11 @@ruby << "-d" if $DEBUG def self.add_service_command(nm) dir = File.dirname(File.expand_path(__FILE__)) + if /ssl/ =~ nm && RUBY_PLATFORM =~ /solaris/i + @@ruby[1..-1] = "-dv" + end DRb::ExtServManager.command[nm] = @@ruby + ["#{dir}/#{nm}"] end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/