Skip test on Solaris SPARC
This test fails on Solaris SPARC with the following error and I can't figure out why: TestGCCompact#test_moving_hashes_down_size_pools Expected 499 to be >= 500.
This commit is contained in:
parent
73529a12bb
commit
01507d2f80
@ -421,6 +421,10 @@ class TestGCCompact < Test::Unit::TestCase
|
||||
omit if GC::INTERNAL_CONSTANTS[:SIZE_POOL_COUNT] == 1
|
||||
# AR and ST hashes are in the same size pool on 32 bit
|
||||
omit unless RbConfig::SIZEOF["uint64_t"] <= RbConfig::SIZEOF["void*"]
|
||||
# This test fails on Solaris SPARC with the following error and I can't figure out why:
|
||||
# TestGCCompact#test_moving_hashes_down_size_pools
|
||||
# Expected 499 to be >= 500.
|
||||
omit if /sparc-solaris/ =~ RUBY_PLATFORM
|
||||
|
||||
assert_separately(%w[-robjspace], "#{<<~"begin;"}\n#{<<~"end;"}", timeout: 10, signal: :SEGV)
|
||||
begin;
|
||||
|
Loading…
x
Reference in New Issue
Block a user