diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2020-06-13 16:32:29 -0700 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2020-06-13 16:33:46 -0700 |
commit | 1583c743d52a0ba94c98c2723b9e595b5e400c6e (patch) | |
tree | e0cb0202d71d3736ff0246d51240344f1416fee3 | |
parent | 2496bdb28f46d984b4721c4d8c8995ff50c9e6bd (diff) | |
download | ruby-1583c743d52a0ba94c98c2723b9e595b5e400c6e.tar.gz |
Skip test_getbinaryfile_command_injection on --jit-wait
Timeout-based test often fails with --jit-wait as a false positive.
Like other tests in the TestFTP, let me skip this as well.
http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3001181
http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3000134
http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/2999923
http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/2998857
-rw-r--r-- | test/net/ftp/test_ftp.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb index 0bc45f2996..571338f9d8 100644 --- a/test/net/ftp/test_ftp.rb +++ b/test/net/ftp/test_ftp.rb @@ -2243,6 +2243,8 @@ EOF end def test_getbinaryfile_command_injection + # http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3001181 + skip 'This has been too unstable with --jit-wait' if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? skip "| is not allowed in filename on Windows" if windows? [false, true].each do |resume| commands = [] |