aboutsummaryrefslogtreecommitdiffstats
path: root/test/gdbm/test_gdbm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/gdbm/test_gdbm.rb')
-rw-r--r--test/gdbm/test_gdbm.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index b406d59dc2..ae6985a5b4 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -14,12 +14,8 @@ if defined? GDBM
require 'rbconfig'
case RbConfig::CONFIG['target_os']
when 'cygwin'
- require 'Win32API'
- uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
- utsname = ' ' * 100
- raise 'cannot get system name' if uname.call(utsname) == -1
-
- utsname.unpack('A20' * 5)[0]
+ require 'etc'
+ Etc.uname[:sysname]
else
RbConfig::CONFIG['target_os']
end