Skip to content

Commit ae81fe4

Browse files
Skip failing test on truffleruby.
1 parent d19bbc9 commit ae81fe4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/zlib/test_zlib.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1271,6 +1271,7 @@ def test_gzfile_read_size_boundary
12711271
# This reproduces the issue where thread wakeup during GzipReader operations
12721272
# can cause Z_BUF_ERROR to be raised incorrectly
12731273
def test_thread_wakeup_interrupt
1274+
pend 'fails' if RUBY_ENGINE == 'truffleruby'
12741275
content = SecureRandom.base64(5000)
12751276
gzipped = Zlib.gzip(content)
12761277

@@ -1568,6 +1569,8 @@ def test_gunzip_no_memory_leak
15681569
# This reproduces the issue where thread wakeup during GzipReader operations
15691570
# can cause Z_BUF_ERROR to be raised incorrectly
15701571
def test_thread_wakeup_interrupt
1572+
pend 'fails' if RUBY_ENGINE == 'truffleruby'
1573+
15711574
content = SecureRandom.base64(5000)
15721575
gzipped = Zlib.gzip(content)
15731576

0 commit comments

Comments
 (0)