summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-22 06:43:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-22 06:43:11 +0000
commit4af7f77d0ffe4371610143731e08f6e74314b4a1 (patch)
treefb471a272a2504b9a08e61772b14c85ae310c8c2 /test
parentdef040f6c330694e4f620a44b7790444d0f59157 (diff)
STATX_BTIME depends on filesystems
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/pathname/test_pathname.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb
index ef88e284e8..8e6681232b 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -797,6 +797,8 @@ class TestPathname < Test::Unit::TestCase
rescue Errno::EPERM
# Docker prohibits statx syscall by the default.
skip("statx(2) is prohibited by seccomp")
+ rescue Errno::ENOSYS
+ skip("statx(2) is not supported on this filesystem")
rescue NotImplementedError
# assert_raise(NotImplementedError) do
# File.birthtime("a")