< prev index next >

test/com/sun/jdi/LambdaBreakpointTest.java

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

*** 1,7 **** /* ! * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 19,41 **** * 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! *****************************************************************/ /** * @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; --- 19,40 ---- * 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. */ ! // THIS TEST IS LINE NUMBER SENSITIVE /** * @test * @summary Test setting breakpoints on lambda calls * @author Staffan Larsen * * @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,60 **** /********** target program **********/ class LambdaBreakpointTestTarg { static int[] breakpointLines = { ! 63, 67, 64, 65, 66, 68 }; public static void main(String[] args) { test(); } --- 49,59 ---- /********** target program **********/ class LambdaBreakpointTestTarg { static int[] breakpointLines = { ! 62, 66, 63, 64, 65, 67 }; public static void main(String[] args) { test(); }
< prev index next >