2019-11-01 00:51:53 +08:00
|
|
|
// Purpose:
|
|
|
|
// Check that \DexExpectProgramState correctly applies a penalty when
|
|
|
|
// an expected program state is never found.
|
|
|
|
//
|
2020-03-28 04:12:00 +08:00
|
|
|
// REQUIRES: system-linux, lldb
|
|
|
|
//
|
|
|
|
// RUN: not %dexter_base test --fail-lt 1.0 -w \
|
|
|
|
// RUN: --builder 'clang' --debugger 'lldb' --cflags "-O0 -glldb" -- %s \
|
|
|
|
// RUN: | FileCheck %s
|
2019-11-01 00:51:53 +08:00
|
|
|
// CHECK: expect_program_state.cpp:
|
|
|
|
|
|
|
|
int GCD(int lhs, int rhs)
|
|
|
|
{
|
|
|
|
if (rhs == 0) // DexLabel('check')
|
|
|
|
return lhs;
|
|
|
|
return GCD(rhs, lhs % rhs);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return GCD(111, 259);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
DexExpectProgramState({
|
|
|
|
'frames': [
|
|
|
|
{
|
|
|
|
'location': {
|
|
|
|
'lineno': 'check'
|
|
|
|
},
|
|
|
|
'watches': {
|
|
|
|
'lhs': '0', 'rhs': '0'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
]
|
|
|
|
})
|
|
|
|
*/
|