[ruby/yarp] Omit locals test if running on a 32 bit machine

https://github.com/ruby/yarp/commit/809d046f36
This commit is contained in:
Jemma Issroff 2023-08-15 14:34:24 -07:00 committed by Takashi Kokubun
parent 87f74a349e
commit c989c1b068
Notes: git 2023-08-17 00:47:56 +00:00

View File

@ -9,6 +9,10 @@
# to test on the most recent versions.
return if !defined?(RubyVM::InstructionSequence) || RUBY_VERSION < "3.2"
# Omit tests if running on a 32-bit machine because there is a bug with how
# Ruby is handling large ISeqs on 32-bit machines
return if RUBY_PLATFORM =~ /i686/
require "yarp_test_helper"
class LocalsTest < Test::Unit::TestCase