summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-03-25 22:52:51 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-03-25 22:54:23 -0700
commitba04678c9820613e19fc485e66363c62726e5797 (patch)
treebf8ddbe74a526cd9b98e60cf46b39b9c13e0114a /test/net
parenteaf06f457af92505fb718a8b711f4d825f399b69 (diff)
Ignore test_getbinaryfile for --jit-wait
To fix this properly, we'd need to configure timeout for the server and the client because waiting for compilation takes time. Until we figure out how to do it, let me skip this.
Diffstat (limited to 'test/net')
-rw-r--r--test/net/ftp/test_ftp.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb
index 4684a31984..3f86d16995 100644
--- a/test/net/ftp/test_ftp.rb
+++ b/test/net/ftp/test_ftp.rb
@@ -735,6 +735,8 @@ class FTPTest < Test::Unit::TestCase
end
def test_getbinaryfile
+ # http://ci.rvm.jp/logfiles/brlog.trunk-mjit-wait.20200326-025942
+ skip 'This has been too unstable with --jit-wait' if RubyVM::MJIT.enabled?
commands = []
binary_data = (0..0xff).map {|i| i.chr}.join * 4 * 3
server = create_ftp_server { |sock|