1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Skip TestRequire#test_loading_fifo_fd_leak on Android

The test fails due to unknown reason.  Need to debug in future, but
tentatively skipped.
This commit is contained in:
Yusuke Endoh 2020-04-19 23:14:31 +09:00
parent 2832ba80d6
commit 5a8960b4fe

View file

@ -770,6 +770,8 @@ class TestRequire < Test::Unit::TestCase
end if File.respond_to?(:mkfifo)
def test_loading_fifo_fd_leak
skip if RUBY_PLATFORM =~ /android/ # https://rubyci.org/logs/rubyci.s3.amazonaws.com/android29-x86_64/ruby-master/log/20200419T124100Z.fail.html.gz
Tempfile.create(%w'fifo .rb') {|f|
f.close
File.unlink(f.path)