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

Add more packages to filter avoids failing on events from background thread.

Reviewed-by: acorn, sspitsyn, sla
This commit is contained in:
Rickard Bäckman 2012-03-14 08:43:28 +01:00
parent 005f647e13
commit b943c9c83d
3 changed files with 8 additions and 3 deletions

View File

@ -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;

View File

@ -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);

View File

@ -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;