| Commit message (Expand) | Author | Age | Files | Lines |
* | [libFuzzer] Delete llvm/lib/Fuzzer | Vitaly Buka | 2017-10-16 | 1 | -139/+0 |
* | [libFuzzer] explicitly use -fsanitize-coverage=trace-pc-guard in test/dump_co... | Kostya Serebryany | 2017-08-14 | 1 | -2/+2 |
* | [libFuzzer] enable reduce_inputs=1 by default (seems to be a big win usually) | Kostya Serebryany | 2017-07-19 | 1 | -2/+2 |
* | [libFuzzer] Allow non-fuzzer args after -ignore_remaining_args=1 | Justin Bogner | 2017-07-14 | 1 | -0/+3 |
* | [libFuzzer] refactoring in preparation for -reduce_inputs; NFC intended | Kostya Serebryany | 2017-07-12 | 1 | -1/+3 |
* | [libFuzzer] update docs on -print_coverage/-dump_coverage | Kostya Serebryany | 2017-05-09 | 1 | -4/+4 |
* | [libFuzzer] extend help for -minimize_crash to cover ASAN_OPTIONS=dedup_token... | Kostya Serebryany | 2017-04-19 | 1 | -0/+2 |
* | [libFuzzer] remove -output_csv option. It duplicates the default output and g... | Kostya Serebryany | 2017-04-19 | 1 | -1/+1 |
* | [libFuzzer] update -help: mention -exact_artifact_path in help for -minimize_... | Kostya Serebryany | 2017-04-19 | 1 | -2/+6 |
* | [libFuzzer] experimental option -cleanse_crash: tries to replace all bytes in... | Kostya Serebryany | 2017-04-17 | 1 | -0/+2 |
* | [libFuzzer] fix type in signal name. | Vitaly Buka | 2017-04-11 | 1 | -1/+1 |
* | [libFuzzer] add two experimental flags to make corpus merging more scalable: ... | Kostya Serebryany | 2017-03-22 | 1 | -0/+7 |
* | [libFuzzer] Experimenting with dictionary minimization. | Kostya Serebryany | 2017-03-17 | 1 | -0/+1 |
* | [libFuzzer] experimental support for 'equivalance fuzzing' | Kostya Serebryany | 2017-01-20 | 1 | -0/+3 |
* | [libFuzzer] remove stale code | Kostya Serebryany | 2017-01-18 | 1 | -2/+0 |
* | [libFuzzer] use table of recent compares for memcmp/strcmp (to unify the code... | Kostya Serebryany | 2017-01-17 | 1 | -1/+1 |
* | [libFuzzer] improve error handling during the merge (handle various IO failures) | Kostya Serebryany | 2017-01-05 | 1 | -0/+1 |
* | [libFuzzer] add an experimental flag -experimental_len_control=1 that sets ma... | Kostya Serebryany | 2016-12-27 | 1 | -0/+1 |
* | [libfuzzer] dump_coverage command line flag | Mike Aizatsky | 2016-12-19 | 1 | -0/+2 |
* | Revert "[libFuzzer] add an experimental flag -experimental_len_control=1 that... | Daniel Jasper | 2016-12-17 | 1 | -1/+0 |
* | [libFuzzer] add an experimental flag -experimental_len_control=1 that sets ma... | Kostya Serebryany | 2016-12-16 | 1 | -0/+1 |
* | [libFuzzer] enable the failure-resistant merge by default (with trace-pc-guar... | Kostya Serebryany | 2016-12-15 | 1 | -2/+0 |
* | [libFuzzer] Properly use unsigned for workers, jobs and NumberOfCpuCores. | Marcos Pividori | 2016-12-13 | 1 | -2/+2 |
* | [libFuzzer] implement crash-resistant merge (https://github.com/google/saniti... | Kostya Serebryany | 2016-12-09 | 1 | -0/+3 |
* | [libFuzzer] fix -error_exitcode=N, now with a test | Kostya Serebryany | 2016-11-03 | 1 | -4/+4 |
* | [libFuzzer] enable use_cmp by default | Kostya Serebryany | 2016-10-27 | 1 | -1/+1 |
* | [libFuzzer] add -trace_cmp=1 (guiding mutations based on the observed CMP ins... | Kostya Serebryany | 2016-10-14 | 1 | -1/+2 |
* | [libFuzzer] add -trace_malloc= flag | Kostya Serebryany | 2016-10-13 | 1 | -0/+2 |
* | [libFuzzer] when shrinking the corpus, delete evicted files previously create... | Kostya Serebryany | 2016-10-08 | 1 | -1/+1 |
* | [libFuzzer] control the reload interval by a flag, make it 10 seconds by default | Kostya Serebryany | 2016-10-08 | 1 | -3/+3 |
* | [libFuzzer] implement the -shrink=1 option that tires to make elements of the... | Kostya Serebryany | 2016-10-01 | 1 | -0/+4 |
* | [libFuzzer] remove unused option | Kostya Serebryany | 2016-09-30 | 1 | -2/+0 |
* | [libFuzzer] add -exit_on_src_pos to test libFuzzer itself, add a test script ... | Kostya Serebryany | 2016-09-27 | 1 | -0/+3 |
* | [libFuzzer] add stats to the corpus; more refactoring | Kostya Serebryany | 2016-09-21 | 1 | -0/+2 |
* | [libFuzzer] refactoring: move the Corpus into a separate class; delete two un... | Kostya Serebryany | 2016-09-21 | 1 | -3/+2 |
* | [libFuzzer] add -print_coverage=1 flag to print coverage directly from libFuz... | Kostya Serebryany | 2016-09-18 | 1 | -1/+2 |
* | [libFuzzer] remove use_traces=1 since use_value_profile seems to be strictly ... | Kostya Serebryany | 2016-09-09 | 1 | -1/+0 |
* | [libFuzzer] add -minimize_crash flag (to minimize crashers). also add two tes... | Kostya Serebryany | 2016-09-01 | 1 | -0/+4 |
* | [libFizzer] rename -print_new_cov_pcs=1 into -print_pcs=1 and make it more us... | Kostya Serebryany | 2016-08-25 | 1 | -1/+1 |
* | [libFuzzer] new experimental feature: value profiling. Profiles values that a... | Kostya Serebryany | 2016-08-16 | 1 | -0/+2 |
* | [libFuzzer] add hooks for strstr, strcasestr, strcasecmp, strncasecmp | Kostya Serebryany | 2016-07-15 | 1 | -0/+2 |
* | [libfuzzer] prune_corpus option for disabling pruning during the load. | Mike Aizatsky | 2016-06-07 | 1 | -0/+2 |
* | [libfuzzer] Trying random unit prefixes during corpus load. | Mike Aizatsky | 2016-05-24 | 1 | -0/+1 |
* | [libFuzzer] better document the -merge=1 flag | Kostya Serebryany | 2016-05-09 | 1 | -1/+2 |
* | [libFuzzer] enhance -rss_limit_mb and enable by default. Now it will print th... | Kostya Serebryany | 2016-05-06 | 1 | -1/+1 |
* | [libFuzzer] add exeprimental -rss_limit_mb flag to fight against OOMs | Kostya Serebryany | 2016-05-06 | 1 | -0/+2 |
* | [libFuzzer] enable detect_leaks=1, add proper docs | Kostya Serebryany | 2016-04-29 | 1 | -1/+1 |
* | [libFuzzer] added -detect_leaks flag (0 by default for now). When enabled, it... | Kostya Serebryany | 2016-04-20 | 1 | -0/+2 |
* | [libFuzzer] more docs | Kostya Serebryany | 2016-03-29 | 1 | -1/+2 |
* | [libFuzzer] handle SIGTERM | Kostya Serebryany | 2016-03-24 | 1 | -0/+1 |