1Fuzzing for LLVM-libc 2--------------------- 3 4Fuzzing tests are used to ensure quality and security of LLVM-libc 5implementations. 6 7Each fuzzing test lives under the fuzzing directory in a subdirectory 8corresponding with the src layout. 9 10Currently we use system libc for functions that have yet to be implemented, 11however as they are implemented the fuzzers will be changed to use our 12implementation to increase coverage for testing. 13 14Fuzzers will be run on `oss-fuzz <https://github.com/google/oss-fuzz>`_ and the 15check-libc target will ensure that they build correctly. 16