Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
659b4b81
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
659b4b81
编写于
4月 26, 2013
作者:
M
mfang
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
210baeb8
beae1310
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
28 addition
and
4 deletion
+28
-4
src/share/classes/java/util/regex/Pattern.java
src/share/classes/java/util/regex/Pattern.java
+3
-3
test/java/util/regex/RegExTest.java
test/java/util/regex/RegExTest.java
+25
-1
未找到文件。
src/share/classes/java/util/regex/Pattern.java
浏览文件 @
659b4b81
...
...
@@ -4334,7 +4334,6 @@ loop: for(int x=0, offset=0; x<nCodePoints; x++, offset+=len) {
info
.
deterministic
=
detm
;
else
info
.
deterministic
=
false
;
return
next
.
study
(
info
);
}
}
...
...
@@ -4415,6 +4414,8 @@ loop: for(int x=0, offset=0; x<nCodePoints; x++, offset+=len) {
}
// Aggressive group match
boolean
match0
(
Matcher
matcher
,
int
i
,
int
j
,
CharSequence
seq
)
{
// don't back off passing the starting "j"
int
min
=
j
;
int
[]
groups
=
matcher
.
groups
;
int
save0
=
0
;
int
save1
=
0
;
...
...
@@ -4452,7 +4453,7 @@ loop: for(int x=0, offset=0; x<nCodePoints; x++, offset+=len) {
break
;
}
}
while
(
j
>
c
min
)
{
while
(
j
>
min
)
{
if
(
next
.
match
(
matcher
,
i
,
seq
))
{
if
(
capture
)
{
groups
[
groupIndex
+
1
]
=
i
;
...
...
@@ -4544,7 +4545,6 @@ loop: for(int x=0, offset=0; x<nCodePoints; x++, offset+=len) {
}
else
{
info
.
deterministic
=
false
;
}
return
next
.
study
(
info
);
}
}
...
...
test/java/util/regex/RegExTest.java
浏览文件 @
659b4b81
...
...
@@ -33,7 +33,7 @@
* 5013885 5003322 4988891 5098443 5110268 6173522 4829857 5027748 6376940
* 6358731 6178785 6284152 6231989 6497148 6486934 6233084 6504326 6635133
* 6350801 6676425 6878475 6919132 6931676 6948903 6990617 7014645 7039066
* 7067045 7014640 7189363
* 7067045 7014640 7189363
8007395
*/
import
java.util.regex.*
;
...
...
@@ -144,6 +144,7 @@ public class RegExTest {
horizontalAndVerticalWSTest
();
linebreakTest
();
branchTest
();
groupCurlyNotFoundSuppTest
();
if
(
failure
)
{
throw
new
RuntimeException
(
"RegExTest failed, 1st failure: "
+
...
...
@@ -3947,4 +3948,27 @@ public class RegExTest {
report
(
"branchTest"
);
}
// This test is for 8007395
private
static
void
groupCurlyNotFoundSuppTest
()
throws
Exception
{
String
input
=
"test this as \ud83d\ude0d"
;
for
(
String
pStr
:
new
String
[]
{
"test(.)+(@[a-zA-Z.]+)"
,
"test(.)*(@[a-zA-Z.]+)"
,
"test([^B])+(@[a-zA-Z.]+)"
,
"test([^B])*(@[a-zA-Z.]+)"
,
"test(\\P{IsControl})+(@[a-zA-Z.]+)"
,
"test(\\P{IsControl})*(@[a-zA-Z.]+)"
,
})
{
Matcher
m
=
Pattern
.
compile
(
pStr
,
Pattern
.
CASE_INSENSITIVE
)
.
matcher
(
input
);
try
{
if
(
m
.
find
())
{
failCount
++;
}
}
catch
(
Exception
x
)
{
failCount
++;
}
}
report
(
"GroupCurly NotFoundSupp"
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录