solidity/test/libsolidity/smtCheckerTests
Martin Blicha 12bca24774 [SMTChecker] Use path condition when creating CHC targets
Without path condition, verification targets created inside ternary
operator ignore the condition of the operator inside the branches.
This led to false positives.

Further updates:

- Function calls should consider the conditions under which they are
called, otherwise the analysis may report false positives.
The fix proposed here is to add the current path condition to the edge
that propagates error from a function call.

- Increment error index after function call

This is necessary for the analysis of the ternary operator to work
correctly. No information should leak from a function call inside a
ternary operator in the first branch to the second branch, including
whether or not an error would have occured in the first branch.

However, for the execution that continues after the function call,
we still need to ensure that under the current path condition
the error has not occurred in that function call.

It would be better to isolate the analysis of the branches to separate
clauses, but I do not see an easy way for that now. In this way, even
though the function call in first branch is included in the clause of
the second branch, no information leaks.

- Additonal test for ternary operator

This tests the behaviour of SMTChecker on ternary operator with function
calls inside both branches. Specifically, it tests that SMTChecker
successfully detects a violation of a verification target in the second
branch when the same target is present also in the first branch, but
there it cannot be triggered because of the operator's condition.
2023-04-21 18:56:34 +02:00
..
abi Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
array_members update smtchecker tests 2023-03-28 18:23:54 +02:00
blockchain_state Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
bmc_coverage Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
complex [SMTChecker] Add a new trusted mode which assumes that code that is 2023-02-06 17:02:33 +01:00
control_flow Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
crypto Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
deployment update smtchecker tests 2023-03-28 18:23:54 +02:00
external_calls update smtchecker tests 2023-03-28 18:23:54 +02:00
file_level Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
function_selector Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
functions Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
imports Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
inheritance Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
inline_assembly Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
invariants Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
loops Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
math Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
modifiers Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
natspec Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
operators [SMTChecker] Use path condition when creating CHC targets 2023-04-21 18:56:34 +02:00
options Add new tests 2021-04-08 21:03:38 +02:00
out_of_bounds Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
overflow Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
simple Trivial isoltest updates: missing // ---- at the end 2021-04-20 17:38:29 +02:00
special Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
try_catch Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
typecast group unsupported warnings 2023-03-15 17:06:06 +01:00
types [SMTChecker] Use path condition when creating CHC targets 2023-04-21 18:56:34 +02:00
unchecked Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
unsupported group unsupported warnings 2023-03-15 17:06:06 +01:00
userTypes Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00
verification_target Report safe properties in BMC and CHC 2023-03-09 14:59:32 +01:00