blob: 63bb197578ad5a21c35c14fb3c0d33389d59b698 [file] [log] [blame]
// Purpose:
// Check that \DexExpectStepKind correctly counts function calls in loops
// where the last source line in the loop is a call. Expect steps out
// of a function to a line before the call to count as 'VERTICAL_BACKWARD'.
//
// RUN: %dexter_regression_test -- %s | FileCheck %s
// CHECK: small_loop.cpp:
int func(int i){
return i;
}
int main()
{
for (int i = 0; i < 2; ++i) {
func(i);
}
return 0;
}
// DexExpectStepKind('VERTICAL_BACKWARD', 2)