summaryrefslogtreecommitdiff
path: root/test/ruby/test_file.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_file.rb')
-rw-r--r--test/ruby/test_file.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ruby/test_file.rb b/test/ruby/test_file.rb
index f5a00f9e17..a4ddf1d74d 100644
--- a/test/ruby/test_file.rb
+++ b/test/ruby/test_file.rb
@@ -2,6 +2,7 @@
require 'test/unit'
require 'tempfile'
require "thread"
+require "-test-/file"
require_relative 'ut_eof'
class TestFile < Test::Unit::TestCase
@@ -358,6 +359,7 @@ class TestFile < Test::Unit::TestCase
sleep 2
File.write(path, "bar")
sleep 2
+ File.read(path)
File.chmod(0644, path)
sleep 2
File.read(path)
@@ -369,7 +371,7 @@ class TestFile < Test::Unit::TestCase
if stat.birthtime != stat.ctime
assert_in_delta t0+4, stat.ctime.to_f, delta
end
- unless /mswin|mingw/ =~ RUBY_PLATFORM
+ if /mswin|mingw/ !~ RUBY_PLATFORM && !Bug::File::Fs.noatime?(path)
# Windows delays updating atime
assert_in_delta t0+6, stat.atime.to_f, delta
end