Clusterfuzz - abhijeetk/chromium-development GitHub Wiki

  • Download clusterfuzz :
  1. git clone https://github.com/google/clusterfuzz
  2. cd clusterfuzz
  3. git checkout tags/reproduce-tool-stable
  • Build chromium with GN argument provided in clusterfuzz issue
  1. CHROMIUM_SRC > gn args out/clusteruzz

  2. Copy GN args as below

    enable_ipc_fuzzer = true

    is_asan = true

    is_component_build = false

    is_debug = false

    is_lsan = true

    use_goma = true

    v8_enable_verify_heap = true

  3. Build code CHROMIUM_SRC > ninja -C out/clusteruzz gn_all

  • From clusterfuzz folder created in steo 1, run :

./reproduce.sh -t https://clusterfuzz.com/testcase-detail/<testcase_id> -b CHROMIUM_SRC/out/clusteruzz