Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. //psuedo code
  2.  
  3. # fuzzing workflow
  4. for {
  5. * push new code to master/dev
  6. * Build the fuzzers in the CI and upload to a server where you will run them.
  7. * The fuzzer will run either until it finds a crash or until a new version of the fuzzer is uploaded
  8. * Corpus is saved between runs
  9. }
  10.  
  11. # regression workflow
  12. for {
  13. * Open a Pull-Request
  14. * Download the corpus + fixed crashes
  15. * Run the fuzzers through all the files available in the corpus (quick) - Free unit-tests!
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement