aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/sqlite3
Commit message (Collapse)AuthorAge
* Update Dockerfiles (#4070)Gravatar devtty1er2020-07-06
| | | | | * Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
* [presubmit] Enforce language attribute in project.yaml to be always set. (#3477)Gravatar Max Moroz2020-03-10
| | | | | | | | | | | | | | | | | | | * [presubmit] Enforce language attribute in projectt.yaml to be always set. * Update documentation, better presubmit check, new project template. * add docstring to templates.py * Add example values in the project.yaml template and remove python value for now * Add "project: c++" to 256 projects * format * Add labels and selective_unpack sections to the presubmit check * fix incorrect auto_ccs format in three projects * fix nss emails after rebase
* Some Mozilla changes (#3481)Gravatar Sylvestre Ledru2020-03-09
| | | | | * Refresh the list to have a Mozilla employee with an active account * Update of the list of nss participants
* Add Mozilla fuzzing team to auto_cc of their used 3rd party libraries (#2703)Gravatar Christoph Diehl2019-08-28
| | | | | | | | | | * Add Mozilla fuzzing team to auto_cc of their used 3rd party libraries * Use new vendor_ccs field in projects.yml (#2703) * Remove not yet approved projects * Remove not yet approved projects
* 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.
* 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
* sqlite3: Add zlib1g-dev (#1068).Gravatar Oliver Chang2018-01-15
| | | | | | For MSan builds, the configure script thinks zlib is installed and tries to use it in a build because its .so/.a files are available. However, the include files aren't because zlib1g-dev isn't installed.
* 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
|
* [sqlite3] Changes to fetch SQLite sources as a tarball using curl (#454)Gravatar Richard Hipp2017-03-14
| | | | | | | | | | | * Untested changes to fetch the latest SQLite sources as a tarball rather than using the Fossil DVCS. * [sqlite3] Address review comments for #454. * Revert of [sqlite3] Address review comments for #454. * Re-land of [sqlite3] Address review comments for #454.
* nitGravatar Mike Aizatsky2017-03-13
|
* [sqlite3] enabled debug modeGravatar Mike Aizatsky2017-03-13
|
* Fix for bug 802.Gravatar Abhishek Arya2017-03-10
| | | https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=802#c4
* Update project.yamlGravatar Kostya Serebryany2017-03-07
|
* Update project.yamlGravatar Kostya Serebryany2017-03-07
|
* Update project.yamlGravatar Kostya Serebryany2017-03-07
|
* Update project.yamlGravatar Abhishek Arya2017-02-02
|
* [sqlite3] Harden printf precision limit to 1M.Gravatar Max Moroz2017-01-20
| | | | | This value is more than enough for real-world applications. Hardening the limit allows us to find fewer irrelevant OOMs.
* [infra] updating usages of base-libfuzzer (#142)Gravatar Mike Aizatsky2017-01-03
|
* [sqlite3] Increase SQLITE_MAX_PAGE_COUNT to 16384.Gravatar Max Moroz2017-01-02
|
* [sqlite3] limit max memory page count to avoid creating large databases.Gravatar Max Moroz2016-12-30
|
* [infra] using -lFuzzingEngine instead of -lfuzzerGravatar Mike Aizatsky2016-12-07
|
* Fix typo, s/CCFLAGS/CFLAGS/ (#145)Gravatar Kuang-che Wu2016-12-07
|
* [infra] target.yaml -> project.yamlGravatar Mike Aizatsky2016-11-29
|
* [infra] renaming targets/ to projects/Gravatar Mike Aizatsky2016-11-29