summaryrefslogtreecommitdiff
path: root/test/ruby/test_literal.rb
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-09-16 15:44:26 +0900
committerKoichi Sasada <ko1@atdot.net>2020-09-16 15:44:26 +0900
commit889bbbaf527372c5cc229b56dca9a2322e325f26 (patch)
treeceac7fe30552a58027d89b8bc43fc7637ef5308e /test/ruby/test_literal.rb
parent344304c89f956bdf269b5424ae091f6928b678bb (diff)
skip on RUBY_ISEQ_DUMP_DEBUG=to_binary
9b535f3ff7 does not support ISeq#to_binary. To make CI green, skip this test temporarily. Please fix this issue and revert this patch.
Diffstat (limited to 'test/ruby/test_literal.rb')
-rw-r--r--test/ruby/test_literal.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_literal.rb b/test/ruby/test_literal.rb
index f5dd093078..f4c40fc0f6 100644
--- a/test/ruby/test_literal.rb
+++ b/test/ruby/test_literal.rb
@@ -187,6 +187,7 @@ class TestRubyLiteral < Test::Unit::TestCase
if defined?(RubyVM::InstructionSequence.compile_option) and
RubyVM::InstructionSequence.compile_option.key?(:debug_frozen_string_literal)
def test_debug_frozen_string
+ skip if ENV['RUBY_ISEQ_DUMP_DEBUG'] == 'to_binary'
src = '_="foo-1"'; f = "test.rb"; n = 1
opt = {frozen_string_literal: true, debug_frozen_string_literal: true}
str = RubyVM::InstructionSequence.compile(src, f, f, n, **opt).eval