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

Skip a File.atime test randomly failing on Travis ppc64le.

See <https://bugs.ruby-lang.org/issues/17926>.
This commit is contained in:
Jun Aruga 2021-06-02 11:13:04 +02:00 committed by Jun Aruga
parent 070caf54d2
commit 2048dfc5d3
Notes: git 2021-06-02 19:38:53 +09:00

View file

@ -22,6 +22,11 @@ describe "File.atime" do
if supports_subseconds != 0
expected_time = Time.at(Time.now.to_i + 0.123456)
File.utime expected_time, 0, @file
# FIXME: A random failing test on Travis ppc64le.
# https://bugs.ruby-lang.org/issues/17926
if ENV.key?('TRAVIS') && ENV['TRAVIS_CPU_ARCH'] == 'ppc64le'
skip '[ruby-core:17926] A random failure on Travis ppc64le'
end
File.atime(@file).usec.should == expected_time.usec
else
File.atime(__FILE__).usec.should == 0