File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
program-analysis/echidna/example Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 run : |
172172 solc-select install ${{ matrix.solc-version || '0.8.0' }}
173173 solc-select use ${{ matrix.solc-version || '0.8.0' }}
174- medusa fuzz --compilation-target ${{ matrix.files }} --target-contracts ${{ matrix.contract }} --no-color > ${{ matrix.files }}.out || true
174+ medusa fuzz --compilation-target ${{ matrix.files }} --target-contracts ${{ matrix.contract }} --no-color --config medusa.json > ${{ matrix.files }}.out || true
175175
176176 - name : Verify that the output is correct
177177 working-directory : ${{ matrix.workdir }}
Original file line number Diff line number Diff line change 1+ {
2+ "fuzzing" : {
3+ "testing" : {
4+ "propertyTesting" : {
5+ "enabled" : true ,
6+ "testPrefixes" : [
7+ " echidna_"
8+ ]
9+ }
10+ }
11+ },
12+ "compilation" : {
13+ "platform" : " crytic-compile" ,
14+ "platformConfig" : {
15+ "target" : " ." ,
16+ "solcVersion" : " " ,
17+ "exportDirectory" : " " ,
18+ "args" : []
19+ }
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments