[PATCH] D30684: [libFuzzer] Don't use same seed for all parallel jobs
Kostya Serebryany via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 7 10:26:17 PST 2017
kcc added a comment.
You can not have deterministic execution with -jobs=N when running on the same corpus because the corpus is reloaded (i.e. you have concurrent execution).
If you want to run N deterministic executions in parallel, simply do a shell loop.
https://reviews.llvm.org/D30684
More information about the llvm-commits
mailing list