summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2023-05-22 12:58:17 +0900
committerGitHub <noreply@github.com>2023-05-22 12:58:17 +0900
commitbd786e78969f9d4a8699376ceafe10934b6ad533 (patch)
treef4d73aea61935283a755d9a0d9a940e47dbb1fc9 /test
parent8fef1373be84cc3bea9df72d52f63d10c87cfaf5 (diff)
Fix mutation on shared strings. (#7837)
Notes
Notes: Merged-By: ioquatix <samuel@codeotaku.com>
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io_buffer.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/ruby/test_io_buffer.rb b/test/ruby/test_io_buffer.rb
index e29400d76e..b9d52d83ce 100644
--- a/test/ruby/test_io_buffer.rb
+++ b/test/ruby/test_io_buffer.rb
@@ -362,10 +362,6 @@ class TestIOBuffer < Test::Unit::TestCase
end
def test_read
- # This is currently a bug in IO:Buffer [#19084] which affects extended
- # strings. On 32 bit machines, the example below becomes extended, so
- # we omit this test until the bug is fixed.
- omit if GC::INTERNAL_CONSTANTS[:SIZE_POOL_COUNT] == 1
io = Tempfile.new
io.write("Hello World")
io.seek(0)