This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tevoinea/migrate task types to template (#3397)
* Add analysis task * generic report * generator task * Libfuzzer crash report * Add libfuzzer merge * libfuzzer regression * Add libfuzzer test input * Cleanup * Update schema * Some light docs and example templates * Add testinput task * Reorganize the code * Cleanup * Improve test, update model
- Loading branch information
Showing
16 changed files
with
1,398 additions
and
245 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
21 changes: 21 additions & 0 deletions
21
src/agent/onefuzz-task/src/local/example_templates/radamsa.yml
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# yaml-language-server: $schema=../schema.json | ||
|
||
# This template file demonstrates how to configure a radamsa task | ||
|
||
target_args: &target_args | ||
target_env: {} | ||
target_exe: "C:\\temp\\onefuzz\\integration\\windows-libfuzzer\\fuzz.exe" | ||
target_options: [] | ||
|
||
tasks: | ||
- type: Generator | ||
<<: *target_args | ||
crashes: "./crashes" | ||
generator_env: {} | ||
generator_exe: "./path/to/generator" | ||
generator_options: [] | ||
readonly_inputs: ["./path/to/readonly-inputs"] | ||
rename_output: true | ||
|
||
- type: Report | ||
<<: *target_args |
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
Oops, something went wrong.