update command line tests

This commit is contained in:
Leonardo Alt
2021-04-08 21:03:39 +02:00
parent d89be74e4a
commit ad10bee8f0
117 changed files with 1302 additions and 1329 deletions
@@ -4,13 +4,14 @@
{
"A":
{
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\npragma experimental SMTChecker;\ncontract test {\nfunction f(uint x, uint y, uint k) public pure {\nrequire(k > 0); require(x % k == 0); require(y % k == 0); uint r = mulmod(x, y, k); assert(r % k == 0);}}"
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.0;\n\ncontract test {\nfunction f(uint x, uint y, uint k) public pure {\nrequire(k > 0); require(x % k == 0); require(y % k == 0); uint r = mulmod(x, y, k); assert(r % k == 0);}}"
}
},
"settings":
{
"modelChecker":
{
"engine": "all",
"timeout": 1000
}
}