< prev index next >

test/com/sun/jdi/LambdaBreakpointTest.java

Print this page
rev 16891 : 8177507: line number sensitive tests for jdi should be unified
Reviewed-by: duke

@@ -19,23 +19,22 @@
  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  */
 
-/********** LINE NUMBER SENSITIVE! *****************************************************************/
+//    THIS TEST IS LINE NUMBER SENSITIVE
 
 /**
  *  @test
  *  @summary Test setting breakpoints on lambda calls
- *
  *  @author Staffan Larsen
  *
- *  @modules jdk.jdi
  *  @run build TestScaffold VMConnection TargetListener TargetAdapter
  *  @run compile -g LambdaBreakpointTest.java
  *  @run driver LambdaBreakpointTest
  */
+
 import java.util.List;
 
 import com.sun.jdi.LocalVariable;
 import com.sun.jdi.Location;
 import com.sun.jdi.Method;

@@ -50,11 +49,11 @@
  /********** target program **********/
 
 class LambdaBreakpointTestTarg {
 
     static int[] breakpointLines = {
-            63, 67, 64, 65, 66, 68
+            62, 66, 63, 64, 65, 67
     };
 
     public static void main(String[] args) {
         test();
     }
< prev index next >