[libc][NFC] Move aligned access implementations to separate header
[llvm-project.git] / libc / docs / dev / fuzzing.rst
blob5cca67826f1503594533dbaf02ee786b71177d42
1 Fuzzing for LLVM-libc functions
2 ===============================
4 Fuzz tests are used to ensure quality and security of LLVM-libc implementations.
5 All fuzz tests live under the directory named ``fuzzing``. Within this
6 directory, the fuzz test for a libc function lives in the same nested directory
7 as its implementation in the toplevel ``src`` directory. The build target
8 ``libc-fuzzer`` builds all of the enabled fuzz tests (but does not run them).
10 Types of fuzz tests
11 ===================
13 As of this writing, there are two different kinds of fuzz tests. One kind are
14 the traditional fuzz tests which test one function at a time and only that
15 particular function. The other kind of tests are what we call as the
16 differential fuzz tests. These tests compare the behavior of LLVM libc
17 implementations with the behavior of the corresponding functions from the system
18 libc.