From bf4a71ee028bfc7cf8543054c9c428306431a598 Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Tue, 6 Oct 2015 16:38:50 +0300 Subject: [PATCH] Minor: fix number of steps in some tests --- .../tinyApp/src/stepping/stepOver/stepOverIfWithInline.kt | 2 +- .../src/stepping/stepOver/stepOverInlineFunctionInReturn.kt | 2 +- .../tinyApp/src/stepping/stepOver/stepOverInlinedLambda.kt | 2 +- .../tinyApp/src/stepping/stepOver/stepOverTryCatchWithInline.kt | 2 +- .../tinyApp/src/stepping/stepOver/stepOverWhenWithInline.kt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverIfWithInline.kt b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverIfWithInline.kt index ad8ef39ba47..efc2e82869d 100644 --- a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverIfWithInline.kt +++ b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverIfWithInline.kt @@ -44,4 +44,4 @@ inline fun foo(f: () -> Int): Int { fun test(i: Int) = 1 -// STEP_OVER: 30 \ No newline at end of file +// STEP_OVER: 21 \ No newline at end of file diff --git a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlineFunctionInReturn.kt b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlineFunctionInReturn.kt index 48e33e692aa..63e96295b84 100644 --- a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlineFunctionInReturn.kt +++ b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlineFunctionInReturn.kt @@ -19,4 +19,4 @@ inline fun foo(f: () -> Int): Int { fun test(i: Int) = 1 -// STEP_OVER: 4 \ No newline at end of file +// STEP_OVER: 3 \ No newline at end of file diff --git a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlinedLambda.kt b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlinedLambda.kt index c95bc259323..9e988752d92 100644 --- a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlinedLambda.kt +++ b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverInlinedLambda.kt @@ -49,4 +49,4 @@ class A { fun test(i: Int) = 1 -// STEP_OVER: 13 \ No newline at end of file +// STEP_OVER: 11 \ No newline at end of file diff --git a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverTryCatchWithInline.kt b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverTryCatchWithInline.kt index da3f0b9be2d..f8571adf20f 100644 --- a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverTryCatchWithInline.kt +++ b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverTryCatchWithInline.kt @@ -51,4 +51,4 @@ inline fun foo(f: () -> Int): Int { fun test(i: Int) = 1 -// STEP_OVER: 30 \ No newline at end of file +// STEP_OVER: 15 \ No newline at end of file diff --git a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverWhenWithInline.kt b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverWhenWithInline.kt index 2d53fac668e..e865acd5f00 100644 --- a/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverWhenWithInline.kt +++ b/idea/testData/debugger/tinyApp/src/stepping/stepOver/stepOverWhenWithInline.kt @@ -86,4 +86,4 @@ inline fun foo(f: () -> Int): Int { fun test(i: Int) = i -// STEP_OVER: 50 \ No newline at end of file +// STEP_OVER: 41 \ No newline at end of file