cf3a842edb
This adds a first simple version of the inspector fuzzer, which is a stripped-down version of the inspector-test executable. The fuzzer generates inputs which are compatible with inspector-test. There are still memory leaks, and the fuzzer will probably run into timeouts most of the time. Both of this will be addressed in follow-ups. R=szuend@chromium.org, machenbach@chromium.org Bug: chromium:1142437 Change-Id: I4d13da460f571d791a3642b0705a1f07b442c11b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2505722 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Simon Zünd <szuend@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#70922}
28 lines
540 B
Plaintext
28 lines
540 B
Plaintext
# Copyright 2018 the V8 project authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
group("v8_fuzzer") {
|
|
testonly = true
|
|
|
|
data_deps = [
|
|
"../..:v8_fuzzers",
|
|
"../../tools:v8_testrunner",
|
|
]
|
|
|
|
data = [
|
|
"./fuzzer.status",
|
|
"./testcfg.py",
|
|
"./inspector/",
|
|
"./json/",
|
|
"./parser/",
|
|
"./regexp/",
|
|
"./regexp_builtins/",
|
|
"./multi_return/",
|
|
"./wasm/",
|
|
"./wasm_async/",
|
|
"./wasm_code/",
|
|
"./wasm_compile/",
|
|
]
|
|
}
|