mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Skip EPERM, like as r67102
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
aa5dd6fe7e
commit
1ae52fcddf
1 changed files with 1 additions and 1 deletions
|
@ -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) }
|
||||
|
|
Loading…
Reference in a new issue