node/deps/v8/tools/clusterfuzz/trials
Michaël Zasso f1e0b83e7b
deps: update V8 to 14.6.202.33
PR-URL: https://github.com/nodejs/node/pull/61898
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
2026-04-24 18:01:28 +02:00
..
BUILD.gn
clusterfuzz_trials_config.json deps: update V8 to 14.6.202.33 2026-04-24 18:01:28 +02:00
PRESUBMIT.py
README.md

It is possible to add trials from the source code side by adding the below line to clusterfuzz_trials_config.json:

{
  "app_args": "FLAG_NAME",
  "app_name": "APP_NAME",
  "probability": PROBABILITY,
  "contradicts": ["FLAG1", "FLAG2", ...]
}
  • app_args: the name of the flag we want to add.
  • app_name: the name of the app we are adding the flag for, this must be d8 on V8.
  • probability: the probability of this flag to be selected.
  • contradicts (optional): the flags that contradict the flag referred to in app_args. This will stop flags that contradict each other from being added in the same trial.