@@ -812,11 +812,11 @@ def test_path_tmpfile
812
812
gz1 . close
813
813
end
814
814
rescue Errno ::EINVAL
815
- skip 'O_TMPFILE not supported (EINVAL)'
815
+ omit 'O_TMPFILE not supported (EINVAL)'
816
816
rescue Errno ::EISDIR
817
- skip 'O_TMPFILE not supported (EISDIR)'
817
+ omit 'O_TMPFILE not supported (EISDIR)'
818
818
rescue Errno ::EOPNOTSUPP
819
- skip 'O_TMPFILE not supported (EOPNOTSUPP)'
819
+ omit 'O_TMPFILE not supported (EOPNOTSUPP)'
820
820
end
821
821
end
822
822
end
@@ -1324,10 +1324,10 @@ def test_adler32_combine
1324
1324
begin
1325
1325
assert_equal ( 0x02820145 , Zlib . adler32_combine ( one , two , 1 ) )
1326
1326
rescue NotImplementedError
1327
- skip "adler32_combine is not implemented"
1327
+ omit "adler32_combine is not implemented"
1328
1328
rescue Test ::Unit ::AssertionFailedError
1329
1329
if /aix/ =~ RUBY_PLATFORM
1330
- skip "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
1330
+ omit "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
1331
1331
end
1332
1332
raise $!
1333
1333
end
@@ -1359,10 +1359,10 @@ def test_crc32_combine
1359
1359
begin
1360
1360
assert_equal ( 0x8c736521 , Zlib . crc32_combine ( one , two , 1 ) )
1361
1361
rescue NotImplementedError
1362
- skip "crc32_combine is not implemented"
1362
+ omit "crc32_combine is not implemented"
1363
1363
rescue Test ::Unit ::AssertionFailedError
1364
1364
if /aix/ =~ RUBY_PLATFORM
1365
- skip "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
1365
+ omit "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
1366
1366
end
1367
1367
raise $!
1368
1368
end
0 commit comments