Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_langtools
提交
205f164d
D
dragonwell8_langtools
项目概览
openanolis
/
dragonwell8_langtools
通知
0
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_langtools
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
205f164d
编写于
7月 13, 2010
作者:
J
jjg
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6968434: test CheckResourceKeys fails on control builds
Reviewed-by: darcy
上级
6930343f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
19 addition
and
1 deletion
+19
-1
test/tools/javac/diags/CheckResourceKeys.java
test/tools/javac/diags/CheckResourceKeys.java
+19
-1
未找到文件。
test/tools/javac/diags/CheckResourceKeys.java
浏览文件 @
205f164d
...
...
@@ -294,6 +294,7 @@ public class CheckResourceKeys {
Set
<
String
>
results
=
new
TreeSet
<
String
>();
JavaCompiler
c
=
ToolProvider
.
getSystemJavaCompiler
();
JavaFileManager
fm
=
c
.
getStandardFileManager
(
null
,
null
,
null
);
JavaFileManager
.
Location
javacLoc
=
findJavacLocation
(
fm
);
String
[]
pkgs
=
{
"javax.annotation.processing"
,
"javax.lang.model"
,
...
...
@@ -302,7 +303,7 @@ public class CheckResourceKeys {
"com.sun.tools.javac"
};
for
(
String
pkg:
pkgs
)
{
for
(
JavaFileObject
fo:
fm
.
list
(
StandardLocation
.
PLATFORM_CLASS_PATH
,
for
(
JavaFileObject
fo:
fm
.
list
(
javacLoc
,
pkg
,
EnumSet
.
of
(
JavaFileObject
.
Kind
.
CLASS
),
true
))
{
String
name
=
fo
.
getName
();
// ignore resource files, and files which are not really part of javac
...
...
@@ -316,6 +317,23 @@ public class CheckResourceKeys {
return
results
;
}
// depending on how the test is run, javac may be on bootclasspath or classpath
JavaFileManager
.
Location
findJavacLocation
(
JavaFileManager
fm
)
{
JavaFileManager
.
Location
[]
locns
=
{
StandardLocation
.
PLATFORM_CLASS_PATH
,
StandardLocation
.
CLASS_PATH
};
try
{
for
(
JavaFileManager
.
Location
l:
locns
)
{
JavaFileObject
fo
=
fm
.
getJavaFileForInput
(
l
,
"com.sun.tools.javac.Main"
,
JavaFileObject
.
Kind
.
CLASS
);
if
(
fo
!=
null
)
return
l
;
}
}
catch
(
IOException
e
)
{
throw
new
Error
(
e
);
}
throw
new
IllegalStateException
(
"Cannot find javac"
);
}
/**
* Get the set of strings from a class file.
* Only strings that look like they might be a resource key are returned.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录