blob: b85aab1d848266d70a6945b82a484d874cbab11d [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'.
//
// REQUIRES: system-linux, lldb
//
// RUN: %dexter test --fail-lt 1.0 -w \
// RUN: --builder 'clang' --debugger 'lldb' --cflags "-O0 -g" -- %s \
// RUN: | 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)