aboutsummaryrefslogtreecommitdiffstats
path: root/test/ripper
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-02 04:39:56 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-02 04:39:56 +0000
commitb503f299523f25e1b3a22c6664de56da9467fd8f (patch)
treece0bb78a86daf6299dd5063c2c14845c690caed5 /test/ripper
parent572de61758cc50931f565bee59770920eacb9c55 (diff)
downloadruby-b503f299523f25e1b3a22c6664de56da9467fd8f.tar.gz
Revert r53409 "parse.y: yylval.num should be u3"
It introduces SEGV git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53410 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ripper')
-rw-r--r--test/ripper/test_ripper.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/ripper/test_ripper.rb b/test/ripper/test_ripper.rb
index 7631b91042..e0b65a04d8 100644
--- a/test/ripper/test_ripper.rb
+++ b/test/ripper/test_ripper.rb
@@ -61,15 +61,4 @@ class TestRipper::Ripper < Test::Unit::TestCase
assert_predicate @ripper, :yydebug
end
- def test_regexp_with_option
- bug11932 = '[ruby-core:72638] [Bug #11932]'
- src = '/[\xC0-\xF0]/u'.force_encoding(Encoding::UTF_8)
- ripper = Ripper.new(src)
- ripper.parse
- assert_predicate(ripper, :error?)
- src = '/[\xC0-\xF0]/n'.force_encoding(Encoding::UTF_8)
- ripper = Ripper.new(src)
- ripper.parse
- assert_not_predicate(ripper, :error?, bug11932)
- end
end if ripper_test