aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-12 02:38:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-12-12 02:38:53 +0000
commit3507e2c2e53779fdd385fb08015c455658183114 (patch)
tree8b333101890a77714eaa19ea702c90977f41f43b /test
parent4d950bb16ef600e7c4e6c510c598df6ebc104ce2 (diff)
downloadruby-3507e2c2e53779fdd385fb08015c455658183114.tar.gz
re.c: char boundary
* re.c (rb_reg_match_m_p): consider char boundary. rb_str_subpos does not adjust to the boundary if len == 0. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57051 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_regexp.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index c93ed968d1..7eac2debbd 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -543,7 +543,8 @@ class TestRegexp < Test::Unit::TestCase
assert_equal(true, /../.match?('abc', -2))
assert_equal(false, /../.match?("abc", -4))
assert_equal(false, /../.match?("abc", 4))
- assert_equal(true, /../n.match?("\u3042" + '\x', 1))
+ assert_equal(true, /../.match?("\u3042xx", 1))
+ assert_equal(false, /../.match?("\u3042x", 1))
assert_equal(true, /\z/.match?(""))
assert_equal(true, /\z/.match?("abc"))
assert_equal(true, /R.../.match?("Ruby"))