[ruby/yarp] Omit locals test if running on a 32 bit machine
https://github.com/ruby/yarp/commit/809d046f36
This commit is contained in:
parent
87f74a349e
commit
c989c1b068
Notes:
git
2023-08-17 00:47:56 +00:00
@ -9,6 +9,10 @@
|
|||||||
# to test on the most recent versions.
|
# to test on the most recent versions.
|
||||||
return if !defined?(RubyVM::InstructionSequence) || RUBY_VERSION < "3.2"
|
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"
|
require "yarp_test_helper"
|
||||||
|
|
||||||
class LocalsTest < Test::Unit::TestCase
|
class LocalsTest < Test::Unit::TestCase
|
||||||
|
Loading…
x
Reference in New Issue
Block a user