Update old tests

This commit is contained in:
Leonardo Alt
2021-04-08 21:03:39 +02:00
parent d617ef461e
commit 0a4afa71bd
1036 changed files with 3950 additions and 3904 deletions
@@ -1,5 +1,3 @@
pragma experimental SMTChecker;
/**
* @title MerkleProof
* @dev Merkle proof verification based on
@@ -33,4 +31,6 @@ library MerkleProof {
}
}
// ====
// SMTEngine: all
// ----
@@ -1,5 +1,3 @@
pragma experimental SMTChecker;
contract A {
@@ -51,8 +49,9 @@ contract MyConc{
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 2519: (773-792): This declaration shadows an existing declaration.
// Warning 2018: (1009-1086): Function state mutability can be restricted to view
// Warning 4984: (985-1002): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
// Warning 2519: (740-759): This declaration shadows an existing declaration.
// Warning 2018: (976-1053): Function state mutability can be restricted to view
// Warning 4984: (952-969): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
@@ -1,4 +1,3 @@
pragma experimental SMTChecker;
contract Simple{
address destination;
@@ -116,5 +115,7 @@ contract PropagateThroughReturnValue {
return (var_state);
}
}
// ====
// SMTEngine: all
// ----
// Warning 2018: (1879-1947): Function state mutability can be restricted to view
// Warning 2018: (1847-1915): Function state mutability can be restricted to view
@@ -1,5 +1,3 @@
pragma experimental SMTChecker;
contract ContractWithFunctionCalled {
function funcCalled() external {
uint256 i = 0;
@@ -72,21 +70,23 @@ contract InternalCall {
}
}
// ====
// SMTEngine: all
// ----
// Warning 9302: (760-815): Return value of low-level calls not used.
// Warning 2072: (117-126): Unused local variable.
// Warning 2072: (260-269): Unused local variable.
// Warning 2072: (667-676): Unused local variable.
// Warning 2018: (75-137): Function state mutability can be restricted to pure
// Warning 2018: (218-280): Function state mutability can be restricted to pure
// Warning 2018: (470-539): Function state mutability can be restricted to pure
// Warning 2018: (1144-1206): Function state mutability can be restricted to pure
// Warning 2018: (1212-1274): Function state mutability can be restricted to pure
// Warning 2018: (1280-1342): Function state mutability can be restricted to pure
// Warning 4588: (714-749): Assertion checker does not yet implement this type of function call.
// Warning 4588: (760-815): Assertion checker does not yet implement this type of function call.
// Warning 4588: (887-919): Assertion checker does not yet implement this type of function call.
// Warning 4588: (714-749): Assertion checker does not yet implement this type of function call.
// Warning 4588: (760-815): Assertion checker does not yet implement this type of function call.
// Warning 4588: (887-919): Assertion checker does not yet implement this type of function call.
// Warning 5729: (1403-1408): BMC does not yet implement this type of function call.
// Warning 9302: (727-782): Return value of low-level calls not used.
// Warning 2072: (84-93): Unused local variable.
// Warning 2072: (227-236): Unused local variable.
// Warning 2072: (634-643): Unused local variable.
// Warning 2018: (42-104): Function state mutability can be restricted to pure
// Warning 2018: (185-247): Function state mutability can be restricted to pure
// Warning 2018: (437-506): Function state mutability can be restricted to pure
// Warning 2018: (1111-1173): Function state mutability can be restricted to pure
// Warning 2018: (1179-1241): Function state mutability can be restricted to pure
// Warning 2018: (1247-1309): Function state mutability can be restricted to pure
// Warning 4588: (681-716): Assertion checker does not yet implement this type of function call.
// Warning 4588: (727-782): Assertion checker does not yet implement this type of function call.
// Warning 4588: (854-886): Assertion checker does not yet implement this type of function call.
// Warning 4588: (681-716): Assertion checker does not yet implement this type of function call.
// Warning 4588: (727-782): Assertion checker does not yet implement this type of function call.
// Warning 4588: (854-886): Assertion checker does not yet implement this type of function call.
// Warning 5729: (1370-1375): BMC does not yet implement this type of function call.
@@ -1,7 +1,8 @@
pragma experimental SMTChecker;
contract C {
function f() public pure returns (uint) {
return uint8(1);
}
}
// ====
// SMTEngine: all
// ----