blob: 7aa8b1a8c5b31c75a5344fc01fca79e3162431d1 [file] [log] [blame]
// Purpose:
// Check that \DexExpectWatchValue applies no penalties when expected
// program states are found.
//
// UNSUPPORTED: system-darwin
//
//
// RUN: %dexter_regression_test -- %s | FileCheck %s
// CHECK: expect_program_state.cpp:
int GCD(int lhs, int rhs)
{
if (rhs == 0)
return lhs; // DexLabel('check')
return GCD(rhs, lhs % rhs);
}
int main()
{
return GCD(111, 259);
}
/*
DexExpectProgramState({
'frames': [
{
'location': {
'lineno': ref('check')
},
'watches': {
'lhs': '37', 'rhs': '0'
}
},
{
'watches': {
'lhs': {'value': '111'}, 'rhs': {'value': '37'}
}
},
{
'watches': {
'lhs': {'value': '259'}, 'rhs': {'value': '111'}
}
},
{
'watches': {
'lhs': {'value': '111'}, 'rhs': {'value': '259'}
}
}
]
})
*/