d65b53cf23
This adds the benchmarks suite to the deopt fuzzer and removes the obsolete deopt configs, which since a while are part of the num-fuzz configs. TBR=sergiyb@chromium.org Bug: v8:6900 Change-Id: I9202e2a66a132eca5940b4444fda97816b034e54 Reviewed-on: https://chromium-review.googlesource.com/876085 Commit-Queue: Michael Achenbach <machenbach@chromium.org> Reviewed-by: Michael Achenbach <machenbach@chromium.org> Cr-Commit-Position: refs/heads/master@{#50720}
52 lines
917 B
Plaintext
52 lines
917 B
Plaintext
# Copyright 2016 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.
|
|
|
|
import("../gni/isolate.gni")
|
|
|
|
group("gn_all") {
|
|
testonly = true
|
|
|
|
if (v8_test_isolation_mode != "noop") {
|
|
deps = [
|
|
":check-static-initializers_run",
|
|
":jsfunfuzz_run",
|
|
":run-gcmole_run",
|
|
":run-num-fuzzer_run",
|
|
]
|
|
}
|
|
}
|
|
|
|
v8_isolate_run("check-static-initializers") {
|
|
deps = [
|
|
"..:d8_run",
|
|
]
|
|
|
|
isolate = "check-static-initializers.isolate"
|
|
}
|
|
|
|
v8_isolate_run("jsfunfuzz") {
|
|
deps = [
|
|
"..:d8_run",
|
|
]
|
|
|
|
isolate = "jsfunfuzz/jsfunfuzz.isolate"
|
|
}
|
|
|
|
v8_isolate_run("run-gcmole") {
|
|
deps = [
|
|
"..:d8_run",
|
|
]
|
|
|
|
isolate = "gcmole/run-gcmole.isolate"
|
|
}
|
|
|
|
# TODO(machenbach): Add tests as dependencies.
|
|
v8_isolate_run("run-num-fuzzer") {
|
|
deps = [
|
|
"..:d8_run",
|
|
]
|
|
|
|
isolate = "run-num-fuzzer.isolate"
|
|
}
|