From bd4fdb714ff6cf3d42d5a7e6597e83cbe4de65b8 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 18 May 2014 08:45:37 +0000 Subject: Use Etc.uname instead of uname command invocation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46001 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby/test_io.rb') diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb index 9d89772d99..1324a2c2fa 100644 --- a/test/ruby/test_io.rb +++ b/test/ruby/test_io.rb @@ -1673,14 +1673,14 @@ class TestIO < Test::Unit::TestCase when 0x9123683E # BTRFS_SUPER_MAGIC when 0x7461636f # OCFS2_SUPER_MAGIC when 0xEF53 # EXT2_SUPER_MAGIC EXT3_SUPER_MAGIC EXT4_SUPER_MAGIC - return false if (`/bin/uname -r`.split('.').map(&:to_i) <=> [3,8]) < 0 + return false if (Etc.uname[:release].split('.').map(&:to_i) <=> [3,8]) < 0 # ext3's timestamp resolution is seconds s = f.stat s.mtime.nsec != 0 || s.atime.nsec != 0 || s.ctime.nsec != 0 when 0x58465342 # XFS_SUPER_MAGIC - return false if (`/bin/uname -r`.split('.').map(&:to_i) <=> [3,5]) < 0 + return false if (Etc.uname[:release].split('.').map(&:to_i) <=> [3,5]) < 0 when 0x01021994 # TMPFS_MAGIC - return false if (`/bin/uname -r`.split('.').map(&:to_i) <=> [3,8]) < 0 + return false if (Etc.uname[:release].split('.').map(&:to_i) <=> [3,8]) < 0 else return false end -- cgit v1.2.3