aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/brotli
Commit message (Collapse)AuthorAge
* 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
* [brotli] Split compile and link actions (#1554)Gravatar Eugene Kliuchnikov2018-06-22
| | | | | Source code have to be compiled by CC, but linked with CXX. Context: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8976
* Switch compiler CXX->CC (#1544)Gravatar Eugene Kliuchnikov2018-06-20
|
* Update brotli build script (#1528)Gravatar Eugene Kliuchnikov2018-06-18
| | | Brotli fuzzer is being converted to C99 in google/brotli#686
* Update build script (#860)Gravatar Eugene Kliuchnikov2017-09-25
|
* 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
* Update build.shGravatar Oliver Chang2017-04-24
|
* Update build.shGravatar Oliver Chang2017-04-24
|
* Remove experimental flag from already tested projects with msan(#473) (#513)Gravatar Abhishek Arya2017-04-04
|
* oss-fuzz/BASE_IMAGE -> oss-fuzz-base/BASE_IMAGEGravatar Oliver Chang2017-03-22
|
* Enable Msan experimentally for some projects (#473).Gravatar Oliver Chang2017-03-21
|
* [infra] ossfuzz/IMAGE -> gcr.io/oss-fuzz/IMAGEGravatar Oliver Chang2017-03-15
|
* Fix brotli seed corpus pathGravatar Abhishek Arya2017-03-02
|
* [infra] updating usages of base-libfuzzer (#142)Gravatar Mike Aizatsky2017-01-03
|
* [brotli] remove executable bit from archiveGravatar Mike Aizatsky2016-12-08
|
* Add brotli fuzzer (#143)Gravatar Eugene Kliuchnikov2016-12-08
* Add brotli fuzzer * Add brotli fuzzer * Move fuzzer code to brotli repository