summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-07 01:07:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-07 01:07:22 +0000
commit46761cdb9858e4f9cd93bdfe8e82670b21d5ef17 (patch)
tree06da0d7965f8d1310dd60dbf086f229edfecef94
parentcbb86ec6fe234f2d6188980ff1854026822cea10 (diff)
test_basicinstructions.rb: implementation defined
* test/ruby/test_basicinstructions.rb (test_send_opassign): implementation defined behavior. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_basicinstructions.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_basicinstructions.rb b/test/ruby/test_basicinstructions.rb
index bb82161726..05a7bb8ece 100644
--- a/test/ruby/test_basicinstructions.rb
+++ b/test/ruby/test_basicinstructions.rb
@@ -604,6 +604,8 @@ class TestBasicInstructions < Test::Unit::TestCase
end
def test_send_opassign
+ return if defined?(RUBY_ENGINE) and RUBY_ENGINE == "ruby"
+
bug7773 = '[ruby-core:51821]'
x = OP.new
assert_equal 42, x.foo = 42, bug7773