aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/zlib
Commit message (Collapse)AuthorAge
* [zlib] Make the build script to loop through C++ fuzz targets. (#2977)Gravatar Max Moroz2019-10-22
| | | | | | | | * [zlib] Make the build script to loop through C++ fuzz targets. * Rename the uncompress2 fuzz target. * fix Dockerfile
* Implement a fuzz target for uncompress2 in zlib. (#2976)Gravatar Chandra Gopalaiah2019-10-22
|
* Enable i386 fuzzing on 18 projects (#2748)Gravatar jonathanmetzman2019-08-22
| | | | Maintainers who own these projects: If you don't want i386 fuzzing, feel free to disable. I figured i386 fuzzing is generally desirable since it can find more bugs but most projects won't switch because of inertia.
* Enable dataflow for 9 projects written in C (#1632).Gravatar Max Moroz2019-06-28
|
* Migrate projects using -lFuzzingEngine to $LIB_FUZZING_ENGINE (#2325)Gravatar jonathanmetzman2019-05-01
| | | Migrate from -lFuzzingEngine to $LIB_FUZZING_ENGINE where possible and not causing breakage
* [zlib] Fix build.sh to overwrite seed corpus symlinks.Gravatar Max Moroz2019-04-04
|
* Add myself to autocc of zlib (#2152)Gravatar Chris Blume2019-02-08
| | | | | | | | | I wrote many of the zlib fuzzers that are used in Chromium. I also just submitted a pull request for those to go to upstream zlib. It would be handy for me to be notified when the fuzzers find something in zlib. This commit adds myself to the autocc of zlib.
* oss-fuzz/12299: fix build error due to change in interface for fast crc32 ↵Gravatar sebpop2019-01-11
| | | | (#2082)
* [zlib] add test for fast crc32 (#1954)Gravatar sebpop2018-11-14
| | | | | | | | Add a check for the recently added routines to combine crc32 checksums. This change adds more code coverage, however the checksum_fuzzer still does not pass the complexity check: (the threshold is at 100) oss-fuzz$ build/out/zlib/checksum_fuzzer -runs=10 2>&1 | grep -Po "INFO: Loaded [[:digit:]]+ module.*\(.*(counters|guards)\):[[:space:]]+\K[[:digit:]]+" 92
* [zlib] add fuzzers (#1780)Gravatar sebpop2018-11-07
|
* add glennrp as project contact (has been approved by mark adler, project ↵Gravatar Glenn Randers-Pehrson2017-09-23
| | | | owner) (#853)
* Use apt-get update && apt-get install, per best practices: (#561)Gravatar Devin Jeanpierre2017-05-01
| | | | | | | | | | | | | | | | | | | https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/ I ran into this because I was getting errors locally, like: E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/d/dpkg/libdpkg-perl_1.18.4ubuntu1.1_all.deb 404 Not Found [IP: 91.189.88.149 80] It turns out you get these if you don't update, and the official best practices are to `run apt-get update && apt-get install`. In fact, running _any_ apt-get install command without the apt-get update && before it can result in unfortunate caching artifacts -- see "cache busting". (P.S. thanks to Peng on Freenode for helping me, I'm bad at Ubuntu.) So: sed -re \ 's/RUN apt-get ((-y )?(install|build-dep))/RUN apt-get update \&\& apt-get \1/' -i \ projects/**/Dockerfile I also manually fixed the cases that already ran apt-get update in their Dockerfile: dlplibs/Dockerfile grpc/Dockerfile libreoffice/Dockerfile
* Remove experimental flag from tested msan projects (#473). (#517)Gravatar Abhishek Arya2017-04-05
|
* Enable msan experimental on some projects. (#514)Gravatar Abhishek Arya2017-04-04
|
* oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGEGravatar Oliver Chang2017-03-22
|
* [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEGravatar Oliver Chang2017-03-15
|
* [infra] updating usages of base-libfuzzer (#142)Gravatar Mike Aizatsky2017-01-03
|
* [infra] using -lFuzzingEngine instead of -lfuzzerGravatar Mike Aizatsky2016-12-07
|
* Fix parallel make command (#144)Gravatar Kuang-che Wu2016-12-07
| | | 'make -j' will make targets parallelly. In other words, "clean" may run after "all" for 'make -j clean all' line.
* [infra] making shallow git clones. fixes #42Gravatar Mike Aizatsky2016-11-29
|
* [infra] target.yaml -> project.yamlGravatar Mike Aizatsky2016-11-29
|
* [infra] renaming targets/ to projects/Gravatar Mike Aizatsky2016-11-29