From ebba8297bb754ff9b7c5a187759d831045769c09 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Feb 2015 08:19:48 +0000 Subject: test_file.rb: just skip assertion * test/ruby/test_file.rb (TestFile#test_stat): skip an assertion only, not making the entire test skipped git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49660 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_file.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb index 16b76b71fe..601d19efcd 100644 --- a/test/ruby/test_file.rb +++ b/test/ruby/test_file.rb @@ -334,8 +334,10 @@ class TestFile < Test::Unit::TestCase if stat.birthtime != stat.ctime assert_in_delta t0+4, stat.ctime.to_f, delta end - skip "Windows delays updating atime" if /mswin|mingw/ =~ RUBY_PLATFORM - assert_in_delta t0+6, stat.atime.to_f, delta + unless /mswin|mingw/ =~ RUBY_PLATFORM + # Windows delays updating atime + assert_in_delta t0+6, stat.atime.to_f, delta + end } rescue NotImplementedError end -- cgit v1.2.3