summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-01-29 14:58:43 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-01-29 15:00:03 +0900
commitd142b37bdc05986f5caec8981550e97cfb7b1ce0 (patch)
tree5ca9d4134f160e93dc7ed70ca67ea76f8fc00b6a
parent7b4b01424fe7448133c63e9415edf075a3c760b9 (diff)
Add more debug print
https://rubyci.org/logs/rubyci.s3.amazonaws.com/solaris11s-sunc/ruby-master/log/20200129T022510Z.fail.html.gz
-rw-r--r--test/net/imap/test_imap.rb13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb
index 03692c233a..6c6a657552 100644
--- a/test/net/imap/test_imap.rb
+++ b/test/net/imap/test_imap.rb
@@ -489,7 +489,16 @@ class IMAPTest < Test::Unit::TestCase
server: @@h[:server].inspect,
t: Process.clock_gettime(Process::CLOCK_MONOTONIC),
}
- super
+ #super
+ s = Socket.tcp(host, port, :connect_timeout => @open_timeout)
+ @@h[:in_tcp_socket_2] = {
+ s: s.inspect,
+ local_address: s.local_address,
+ remote_address: s.remote_address,
+ t: Process.clock_gettime(Process::CLOCK_MONOTONIC),
+ }
+ s.setsockopt(:SOL_SOCKET, :SO_KEEPALIVE, true)
+ s
end
end
start_server do
@@ -523,7 +532,7 @@ class IMAPTest < Test::Unit::TestCase
raise Errno::EINVAL
end
end
- rescue Errno::EINVAL => e # for debug on OpenCSW
+ rescue SystemCallError => e # for debug on OpenCSW
h[:in_rescue] = {
e: e,
server_addr: server_addr,