Skip to content

Commit 5a32a73

Browse files
committed
tests: fix default config to match default values in code
1 parent 8d5888b commit 5a32a73

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tests/solidity/basic/default.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ psender: "0x10000"
1111
#prefix is the prefix for Boolean functions that are properties to be checked
1212
prefix: "echidna_"
1313
#propMaxGas defines gas cost at which a property fails
14-
propMaxGas: 8000030
14+
propMaxGas: 12500000
1515
#testMaxGas is a gas limit; does not cause failure, but terminates sequence
16-
testMaxGas: 8000030
16+
testMaxGas: 12500000
1717
#maxGasprice is the maximum gas price
1818
maxGasprice: 0
1919
#testLimit is the number of test sequences to run
@@ -25,9 +25,10 @@ seqLen: 100
2525
#shrinkLimit determines how much effort is spent shrinking failing sequences
2626
shrinkLimit: 5000
2727
#coverage controls coverage guided testing
28-
coverage: false
28+
coverage: true
2929
#format can be "text" or "json" for different output (human or machine readable)
30-
format: "text"
30+
#default is interactive if running on an interactive tty or text mode if not
31+
format: null
3132
#contractAddr is the address of the contract itself
3233
contractAddr: "0x00a329c0648769a73afac7f9381e08fb43dbea72"
3334
#deployer is address of the contract deployer (who often is privileged owner, etc.)
@@ -103,7 +104,7 @@ symExecNSolvers: 1
103104
symExecTimeout: 30
104105
# Number of times we may revisit a particular branching point
105106
# only relevant if symExec is true
106-
symExecMaxIters: 10
107+
symExecMaxIters: 5
107108
# Number of times we may revisit a particular branching point before we consult the smt solver to check reachability
108109
# only relevant if symExec is true
109110
symExecAskSMTIters: 1

0 commit comments

Comments
 (0)