summaryrefslogtreecommitdiff
path: root/test/ruby/test_file_exhaustive.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-22 06:22:24 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-22 06:22:24 +0000
commit1ae52fcddff2440ee96013c020c41844332fee38 (patch)
tree1201f172d14d0b5d74fdc9b174505db804252ed3 /test/ruby/test_file_exhaustive.rb
parentaa5dd6fe7ef58b4d10eb3192c342043fbe8be8cd (diff)
Skip EPERM, like as r67102
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_file_exhaustive.rb')
-rw-r--r--test/ruby/test_file_exhaustive.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_file_exhaustive.rb b/test/ruby/test_file_exhaustive.rb
index c3e5b59d2a..eb8dd73c21 100644
--- a/test/ruby/test_file_exhaustive.rb
+++ b/test/ruby/test_file_exhaustive.rb
@@ -630,7 +630,7 @@ class TestFileExhaustive < Test::Unit::TestCase
assert_kind_of(Time, t1)
assert_kind_of(Time, t2)
assert_equal(t1, t2)
- rescue Errno::ENOSYS
+ rescue Errno::ENOSYS, Errno::EPERM
# ignore unsupporting filesystems
end
assert_raise(Errno::ENOENT) { File.birthtime(nofile) }