Fuzzilli: fuzzilli-0.9.3
V8: 8560c85e
depot_tools: a73a2497
clang version: 13.0.0
Ubuntu 20.04
I compile v8 using standard V8/Target/fuzzbuild.sh from repository.
I try a 12h campaign running:
timeout 12h swift run FuzzilliCli --profile=v8 ${V8_DIR}/out/fuzzbuild/d8 --storagePath=${V8_LOG}/v8_campaign --overwrite --exportStatistics
After the campaign, I am not able to replicate any of the crashes found.
The /crash folder contains 5 deterministic and 616 flaky. I know flaky crashes are not reproducible, the problem is that I can't even reproduce the deterministic ones.
To replicate the crashes, I tried like this:
for f in $CRASH_DIR/*; do
if [[ "$f" == *.js ]]
then
$OUT_V8 $f
fi
done
I also tried to replay the crashes by using the suggested flags from the .js seeds.
What am I missing?
Fuzzilli:
fuzzilli-0.9.3V8:
8560c85edepot_tools:
a73a2497clang version:
13.0.0Ubuntu 20.04
I compile v8 using standard
V8/Target/fuzzbuild.shfrom repository.I try a 12h campaign running:
After the campaign, I am not able to replicate any of the crashes found.
The
/crashfolder contains 5 deterministic and 616 flaky. I know flaky crashes are not reproducible, the problem is that I can't even reproduce the deterministic ones.To replicate the crashes, I tried like this:
I also tried to replay the crashes by using the suggested flags from the .js seeds.
What am I missing?