aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzit.sh
Commit message (Collapse)AuthorAgeFilesLines
* organize top level filesDmitry Vyukov2020-05-021-27/+0
| | | | | Remove .gitattributes, we don't have any of these files now. Move fuzzit.sh -> tools/fuzzit.sh.
* fuzzit.sh: generate descriptions before buildingDmitry Vyukov2020-05-011-0/+1
| | | | | The script does not use make and does not generate descriptions. Generate descriptions explicitly before building.
* fix fuzzit script to work with latest CLI syntaxYevgeny Pats2019-09-131-7/+2
| | | | Signed-off-by: Yevgeny Pats <yp@fuzzit.dev>
* updated fuzzit to v2.4.46Yevgeny Pats2019-09-121-1/+1
|
* fuzzit.sh: migrate syzkaller to new org and introduce regressionYevgeny Pats2019-08-091-8/+14
| | | | | | | | | | | | The fuzzers now run on every new code that is pushed to master Regression using the generated corpus from the above step is run locally in the travis. This should fail the travis if new or old bugs are introduce and thus help catch bugs earlier. To reproduce locally you can run ./fuzzit create job --local syzkaller/target-name $PATH_TO_FUZZER
* fuzzit.sh: switch to go-fuzz orgDmitry Vyukov2019-07-311-5/+5
| | | | | Switch fuzzing from my private account to go-fuzz org. Target id's changed as the result.
* travis: remove fuzzit.dev sanity checkingDmitry Vyukov2019-07-311-3/+1
| | | | | It can't work because forks don't get the api key exported (for security reasons).
* fuzzit.sh: go get go-fuzz-buildDmitry Vyukov2019-07-301-0/+1
| | | | | | | | The build failed with: ./fuzzit.sh: line 13: go-fuzz-build: command not found Though we go get it in make presubmit. Perhaps, local files are not shared between jobs or something. Let's try to get get right in fuzzit.sh.
* travis: add fuzzit.dev supportDmitry Vyukov2019-07-301-0/+26
Based on https://github.com/fuzzitdev/example-go Let's see if it works...