Debugger: Add test for KT-14057
This commit is contained in:
+5
@@ -1161,6 +1161,11 @@ public class KotlinSteppingTestGenerated extends AbstractKotlinSteppingTest {
|
|||||||
runTest("idea/jvm-debugger/jvm-debugger-test/testData/stepping/custom/inlinePropertyAccessors.kt");
|
runTest("idea/jvm-debugger/jvm-debugger-test/testData/stepping/custom/inlinePropertyAccessors.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@TestMetadata("kt14057.kt")
|
||||||
|
public void testKt14057() throws Exception {
|
||||||
|
runTest("idea/jvm-debugger/jvm-debugger-test/testData/stepping/custom/kt14057.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@TestMetadata("kt15823.kt")
|
@TestMetadata("kt15823.kt")
|
||||||
public void testKt15823() throws Exception {
|
public void testKt15823() throws Exception {
|
||||||
runTest("idea/jvm-debugger/jvm-debugger-test/testData/stepping/custom/kt15823.kt");
|
runTest("idea/jvm-debugger/jvm-debugger-test/testData/stepping/custom/kt15823.kt");
|
||||||
|
|||||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FunctionBreakpoint created at ReadWrite.kt:105
|
FunctionBreakpoint created at ReadWrite.kt
|
||||||
Run Java
|
Run Java
|
||||||
Connected to the target VM
|
Connected to the target VM
|
||||||
ReadWrite.!EXT!
|
ReadWrite.!EXT!
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
package test
|
||||||
|
|
||||||
|
import java.io.StringReader
|
||||||
|
|
||||||
|
fun main() {
|
||||||
|
val reader = StringReader("test")
|
||||||
|
reader.readText()
|
||||||
|
}
|
||||||
|
|
||||||
|
// ADDITIONAL_BREAKPOINT: ReadWrite.kt / public fun Reader.copyTo( / fun
|
||||||
|
// STEP_OVER: 2
|
||||||
|
// STEP_INTO: 1
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
FunctionBreakpoint created at ReadWrite.kt
|
||||||
|
Run Java
|
||||||
|
Connected to the target VM
|
||||||
|
ReadWrite.!EXT!
|
||||||
|
ReadWrite.!EXT!
|
||||||
|
ReadWrite.!EXT!
|
||||||
|
Reader.!EXT!
|
||||||
|
resuming ReadWrite.kt:129
|
||||||
|
Disconnected from the target VM
|
||||||
|
|
||||||
|
Process finished with exit code 0
|
||||||
Reference in New Issue
Block a user