ruby-changes:68287
From: Yusuke <ko1@a...>
Date: Thu, 7 Oct 2021 10:42:22 +0900 (JST)
Subject: [ruby-changes:68287] 273673aeaf (master): test/ruby/test_process (test_no_curdir): tentatively skipped on Solaris
https://git.ruby-lang.org/ruby.git/commit/?id=273673aeaf From 273673aeafd5e5a40a6212de17c788c2c029865e Mon Sep 17 00:00:00 2001 From: Yusuke Endoh <mame@r...> Date: Thu, 7 Oct 2021 10:40:40 +0900 Subject: test/ruby/test_process (test_no_curdir): tentatively skipped on Solaris The test gets stuck on Solaris CI. http://rubyci.s3.amazonaws.com/solaris11-gcc/ruby-master/log/20211006T050007Z.fail.html.gz#test-all ``` [14558/21042] TestProcess#test_no_curdirtimeout: output interval exceeds 1800.0 seconds. timeout: the process group 3857 is alive. ``` Related to ee89543e09a2d4e4c503267c248ba7bfffa668cb --- test/ruby/test_process.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 07aa58418b..98c934945c 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -1732,6 +1732,9 @@ class TestProcess < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_process.rb#L1732 end def test_no_curdir + if /solaris/i =~ RUBY_PLATFORM + skip "Temporary skip to avoid CI failures after commit to use realpath on required files" + end with_tmpchdir {|d| Dir.mkdir("vd") status = nil -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/