8208468: [TESTBUG] nsk/jdb/locals/locals002: fails with "Prompt is not received during ... milliseconds"

Reviewed-by: cjplummer, amenkov
This commit is contained in:
Gary Adams 2018-09-13 07:46:41 -04:00
parent fcc414655b
commit 18199b887f

View File

@ -81,7 +81,7 @@ public class locals002a {
int[] arrVar
)
{
System.out.println("Arguments but no locals"); // locals002.BREAKPOINT_LINE1
int x = 3; // locals002.BREAKPOINT_LINE1
}
static void allKindsOfLocals() {
@ -97,6 +97,6 @@ public class locals002a {
int[] arrVar = new int[5];
for (int j = 0; j < 5 ; j++) arrVar[j] = j;
System.out.println("Locals but no arguments"); // locals002.BREAKPOINT_LINE2
int x = 4; // locals002.BREAKPOINT_LINE2
}
}