PR-URL: https://github.com/nodejs/node/pull/44741 Fixes: https://github.com/nodejs/node/issues/44650 Fixes: https://github.com/nodejs/node/issues/37472 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
631 B
631 B
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 bed8onV8.probability: the probability of this flag to be selected.contradicts(optional): the flags that contradict the flag referred to inapp_args. This will stop flags that contradict each other from being added in the same trial.