1Reproducing Skia Fuzzes 2======================= 3 4We assume that you can [build Skia](/user/build). Many fuzzes only reproduce 5when building with ASAN or MSAN; see [those instructions for more details](./xsan). 6 7All that is needed to reproduce a fuzz downloaded from ClusterFuzz, oss-fuzz or 8fuzzer.skia.org is to run something like: 9 10 out/ASAN/fuzz -b /path/to/downloaded/testcase 11 12The fuzz binary will try its best to guess what the type/name should be based on 13the name of the testcase. Manually providing type and name is also supported, like: 14 15 out/ASAN/fuzz -t filter_fuzz -b /path/to/downloaded/testcase 16 out/ASAN/fuzz -t api -n RasterN32Canvas -b /path/to/downloaded/testcase 17 18To enumerate all supported types and names, run the following: 19 20 out/ASAN/fuzz --help # will list all types 21 out/ASAN/fuzz -t api # will list all names