mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 12:56:07 +00:00

Summary: Added fuzzing test for strcpy and some documentation related to fuzzing. This will be the first step in integrating this with oss-fuzz. Reviewers: sivachandra, abrachet Reviewed By: sivachandra, abrachet Subscribers: gchatelet, abrachet, mgorny, MaskRay, tschuett, libc-commits Tags: #libc-project Differential Revision: https://reviews.llvm.org/D74091
16 lines
575 B
ReStructuredText
16 lines
575 B
ReStructuredText
Fuzzing for LLVM-libc
|
|
---------------------
|
|
|
|
Fuzzing tests are used to ensure quality and security of LLVM-libc
|
|
implementations.
|
|
|
|
Each fuzzing test lives under the fuzzing directory in a subdirectory
|
|
corresponding with the src layout.
|
|
|
|
Currently we use system libc for functions that have yet to be implemented,
|
|
however as they are implemented the fuzzers will be changed to use our
|
|
implementation to increase coverage for testing.
|
|
|
|
Fuzzers will be run on `oss-fuzz <https://github.com/google/oss-fuzz>`_ and the
|
|
check-libc target will ensure that they build correctly.
|