mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/zlib/test_zlib.rb (test_adler32_combine, test_crc32_combine):
Skip two tests on AIX because zconf.h in zlib does not correctly recognize _LARGE_FILES in AIX. The problem was already reported to zlib, and skip these tests until it is fixed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2819add5ac
commit
1ec6bb95bc
2 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
Sat Mar 5 07:14:10 2016 Rei Odaira <Rei.Odaira@gmail.com>
|
||||
|
||||
* test/zlib/test_zlib.rb (test_adler32_combine, test_crc32_combine):
|
||||
Skip two tests on AIX because zconf.h in zlib does not correctly
|
||||
recognize _LARGE_FILES in AIX. The problem was already reported
|
||||
to zlib, and skip these tests until it is fixed.
|
||||
|
||||
Sat Mar 5 03:07:40 2016 Rei Odaira <Rei.Odaira@gmail.com>
|
||||
|
||||
* thread_pthread.c (getstack): __pi_stacksize returned by
|
||||
|
|
|
@ -1070,6 +1070,11 @@ if defined? Zlib
|
|||
assert_equal(0x02820145, Zlib.adler32_combine(one, two, 1))
|
||||
rescue NotImplementedError
|
||||
skip "adler32_combine is not implemented"
|
||||
rescue Minitest::Assertion
|
||||
if /aix/ =~ RUBY_PLATFORM
|
||||
skip "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
|
||||
end
|
||||
raise $!
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -1087,6 +1092,11 @@ if defined? Zlib
|
|||
assert_equal(0x8c736521, Zlib.crc32_combine(one, two, 1))
|
||||
rescue NotImplementedError
|
||||
skip "crc32_combine is not implemented"
|
||||
rescue Minitest::Assertion
|
||||
if /aix/ =~ RUBY_PLATFORM
|
||||
skip "zconf.h in zlib does not handle _LARGE_FILES in AIX. Skip until it is fixed"
|
||||
end
|
||||
raise $!
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue