aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_regexp.rb
diff options
context:
space:
mode:
authorTSUYUSATO Kitsune <make.just.on@gmail.com>2022-12-28 20:03:25 +0900
committerGitHub <noreply@github.com>2022-12-28 20:03:25 +0900
commitb726d60c986bf951d13e7a2ab5f5e58f58657b03 (patch)
tree83b1f96fab2fd86574a389828765d85e705f3b5e /test/ruby/test_regexp.rb
parent393192160726d6b299ca1f66fad9414e4bf8109a (diff)
downloadruby-b726d60c986bf951d13e7a2ab5f5e58f58657b03.tar.gz
Fix [Bug 19273], set correct value to `outer_repeat` on `OP_REPEAT` (#7035)
Diffstat (limited to 'test/ruby/test_regexp.rb')
-rw-r--r--test/ruby/test_regexp.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index 40d3559c0b..98bf41d2f1 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -1721,6 +1721,11 @@ class TestRegexp < Test::Unit::TestCase
end;
end
+ def test_bug_19273 # [Bug #19273]
+ pattern = /(?:(?:-?b)|(?:-?(?:1_?(?:0_?)*)?0))(?::(?:(?:-?b)|(?:-?(?:1_?(?:0_?)*)?0))){0,3}/
+ assert_equal("10:0:0".match(pattern)[0], "10:0:0")
+ end
+
def test_linear_time_p
assert_send [Regexp, :linear_time?, /a/]
assert_send [Regexp, :linear_time?, 'a']