提交 aa732ff3 编写于 作者: R rbackman

7145419: com/sun/jdi/JdbMethodExitTest.sh fails when a background thread is generating events.

Summary: Add more packages to filter avoids failing on events from background thread.
Reviewed-by: acorn, sspitsyn, sla
上级 425b5d38
......@@ -292,7 +292,9 @@ public class EarlyReturnTest extends TestScaffold {
private String[] excludes = {
"javax.*",
"sun.*",
"com.sun.*"};
"com.sun.*",
"com.oracle.*",
"oracle.*"};
static VirtualMachineManager vmm ;
ClassType targetClass;
......
......@@ -114,7 +114,8 @@ public class MethodEntryExitEvents extends TestScaffold {
* http://java.sun.com/javase/technologies/core/toolsapis/jpda/
*/
private String[] excludes = {"java.*", "javax.*", "sun.*",
"com.sun.*"};
"com.sun.*", "com.oracle.*",
"oracle.*"};
MethodEntryExitEvents (String args[]) {
super(args);
......
......@@ -218,7 +218,9 @@ public class MethodExitReturnValuesTest extends TestScaffold {
private String[] excludes = {
"javax.*",
"sun.*",
"com.sun.*"};
"com.sun.*",
"com.oracle.*",
"oracle.*"};
static VirtualMachineManager vmm ;
ClassType targetClass;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册