[Dexter] Fix incorrect test expectations for floating point tests
A pair of tests had incorrect expectations set, one being an off-by-one error and the other using decimal points in the expect that lldb omits.
This commit is contained in:
parent
224094eb44
commit
ec7c959671
|
@ -15,4 +15,4 @@ int main() {
|
||||||
return a; //DexLabel('check2')
|
return a; //DexLabel('check2')
|
||||||
}
|
}
|
||||||
|
|
||||||
// DexExpectWatchValue('a', '1.0', '100.0', from_line=ref('check1'), to_line=ref('check2'), float_range=0.5)
|
// DexExpectWatchValue('a', '1.0', '101.0', from_line=ref('check1'), to_line=ref('check2'), float_range=0.5)
|
||||||
|
|
|
@ -13,4 +13,4 @@ int main() {
|
||||||
return a; //DexLabel('check')
|
return a; //DexLabel('check')
|
||||||
}
|
}
|
||||||
|
|
||||||
// DexExpectWatchValue('a', '1.00000', on_line=ref('check'))
|
// DexExpectWatchValue('a', '1', on_line=ref('check'))
|
||||||
|
|
Loading…
Reference in New Issue