Add v8_wasm_streaming_fuzzer

The fuzzer was added to V8 in https://crrev.com/c/3675100.

R=inferno@chromium.org

Bug: v8:12922
Change-Id: Ic7253f3eba56b82674af5c51f9b4f3529a344ab4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3673527
Auto-Submit: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Commit-Queue: Oliver Chang <ochang@chromium.org>
Reviewed-by: Oliver Chang <ochang@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1011810}
NOKEYCHECK=True
GitOrigin-RevId: 6ab8dac9f72e3119c2a8d4f3c6ebbe4b218b4994
1 file changed
tree: 12a6e1caeca9942b5ac6ec40a7efe04b8828ef80
  1. fuzzer_support_ios/
  2. fuzzers/
  3. proto/
  4. tests/
  5. AFL_integration.md
  6. archive_corpus.py
  7. BUILD.gn
  8. dictionary_generator.py
  9. efficient_fuzzing.md
  10. fuzzer_test.gni
  11. gen_fuzzer_config.py
  12. gen_fuzzer_owners.py
  13. getting_started.md
  14. libfuzzer_exports.h
  15. libFuzzer_integration.md
  16. libprotobuf-mutator.md
  17. OWNERS
  18. README.md
  19. reference.md
  20. reproducing.md
  21. unittest_main.cc
  22. zip_sources.py
README.md

Fuzz testing in Chromium

go/chrome-fuzzing

Fuzzing is a testing technique that feeds auto-generated inputs to a piece of target code in an attempt to crash the code. It's one of the most effective methods we have for finding security and stability issues (see go/fuzzing-success). You can learn more about the benefits of fuzzing at go/why-fuzz.

This documentation covers the in-process guided fuzzing approach employed by different fuzzing engines, such as libFuzzer or AFL. To learn more about out-of-process fuzzers, please refer to the Blackbox fuzzing page in the ClusterFuzz documentation.

Getting Started

In Chromium, you can easily create and submit fuzz targets. The targets are automatically discovered by buildbots, built with different fuzzing engines, then uploaded to the distributed ClusterFuzz fuzzing system to run at scale.

Create your first fuzz target and submit it by stepping through our Getting Started Guide.

Advanced Topics

Further Reading

Trophies

Other Links