-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🚧 arguments to hongfuzz within trdelnik toml * 🚧 Working on merge with CLI and give precedence * 🚧 Removed lazy static for config, modified precedence from cli and added logic for merge (may be changed) * ✅ added tests for config merge/precedence with cli, updated template and small changes in order to work with other command * 🐛 moved config * 🐛 fixed review + added tests for short flag without space * ♻️ Removed parse from CLI as later has precedence, renamed structs and modified tests * 🔥 unused extern crate * 🧑💻 Simplified vec to string loop and improved function name --------- Co-authored-by: lukacan <[email protected]>
- Loading branch information
Showing
5 changed files
with
221 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
[test] | ||
validator_startup_timeout = 15000 | ||
|
||
|
||
# set for default values | ||
[fuzz] | ||
timeout = 10 | ||
iterations = 0 | ||
keep_output = false | ||
verbose = false | ||
exit_upon_crash = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
[test] | ||
validator_startup_timeout = 15000 | ||
|
||
[fuzz] | ||
iterations = 500 | ||
timeout = 25 | ||
keep_output = false | ||
verbose = false | ||
exit_upon_crash = true |