| Commit message (Expand) | Author | Age | Files | Lines |
* | [libFuzzer] honour -only_ascii=1 when reading the initial corpus. Also, remov... | Kostya Serebryany | 2015-09-02 | 1 | -5/+3 |
* | [libFuzzer] add two flags, -tbm_depth and -tbm_width to control how the trace... | Kostya Serebryany | 2015-08-12 | 1 | -6/+17 |
* | [libFuzzer] add colons to the stats output to avoid confusion | Kostya Serebryany | 2015-08-12 | 1 | -2/+3 |
* | Fix unused variable 'X' in release builds. | Nick Lewycky | 2015-08-11 | 1 | -0/+2 |
* | [libFuzzer] add -only_ascii flag | Kostya Serebryany | 2015-08-11 | 1 | -1/+6 |
* | [libFuzzer] add option -report_slow_units=Nsec to control when slow units are... | Kostya Serebryany | 2015-08-05 | 1 | -3/+4 |
* | [libFuzzer] limit the size of the inputs printed to stderr | Kostya Serebryany | 2015-07-31 | 1 | -4/+10 |
* | [libFuzzer] allow users to supply their own implementation of rand | Kostya Serebryany | 2015-07-24 | 1 | -4/+4 |
* | [libFuzzer] dump long running units to disk | Kostya Serebryany | 2015-07-23 | 1 | -4/+5 |
* | [lib/Fuzzer] make assertions more informative and update comments for the use... | Kostya Serebryany | 2015-05-30 | 1 | -2/+6 |
* | [lib/Fuzzer] make the fuzzing timeout 1200 seconds by default (was: infinity) | Kostya Serebryany | 2015-05-26 | 1 | -0/+2 |
* | [lib/Fuzzer] fix build with assertions | Kostya Serebryany | 2015-05-26 | 1 | -3/+3 |
* | [lib/Fuzzer] fully get rid of std::cerr in libFuzzer | Kostya Serebryany | 2015-05-23 | 1 | -30/+17 |
* | [lib/Fuzzer] remove -use_coverage_pairs=1, an experimental feature that is un... | Kostya Serebryany | 2015-05-22 | 1 | -24/+0 |
* | [lib/Fuzzer] extend the fuzzer interface to allow user-supplied mutators | Kostya Serebryany | 2015-05-22 | 1 | -7/+15 |
* | [lib/Fuzzer] change the meaning of -timeout flag: now timeout is applied to e... | Kostya Serebryany | 2015-05-19 | 1 | -4/+10 |
* | [lib/Fuzzer] more efficient reload logic; also don't spam git too much | Kostya Serebryany | 2015-05-19 | 1 | -5/+9 |
* | [lib/Fuzzer] when -sync_command=<CMD> is given, periodically execute 'CMD COR... | Kostya Serebryany | 2015-05-18 | 1 | -0/+11 |
* | Code cleanup: Reindent Fuzzer::MutateAndTestOne. | Logan Chien | 2015-05-17 | 1 | -2/+2 |
* | [lib/Fuzzer] rename FuzzerDFSan.cpp to FuzzerTraceState.cpp; update comments.... | Kostya Serebryany | 2015-05-11 | 1 | -1/+1 |
* | [lib/Fuzzer] use -fsanitize-coverage=trace-cmp when building LLVM with LLVM_U... | Kostya Serebryany | 2015-05-08 | 1 | -0/+26 |
* | [lib/Fuzzer] change the way we use taint information for fuzzing. Now, we run... | Kostya Serebryany | 2015-05-07 | 1 | -1/+6 |
* | [lib/Fuzzer] minor refactoring/simplification, NFC | Kostya Serebryany | 2015-05-07 | 1 | -29/+30 |
* | [lib/Fuzzer] on crash print the contents of the crashy input as base64 | Kostya Serebryany | 2015-05-05 | 1 | -0/+2 |
* | [fuzzer] Add support for token-based fuzzing (e.g. for C++). Allow string fla... | Kostya Serebryany | 2015-03-31 | 1 | -11/+61 |
* | [fuzzer] when a single unit takes over 1 second to run and it is the slowest ... | Kostya Serebryany | 2015-03-30 | 1 | -4/+16 |
* | [fuzzer] print various stats in a unified way | Kostya Serebryany | 2015-03-30 | 1 | -21/+24 |
* | DFSan-based fuzzer (proof of concept). | Kostya Serebryany | 2015-03-30 | 1 | -0/+1 |
* | [sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fu... | Kostya Serebryany | 2015-03-03 | 1 | -1/+13 |
* | [fuzzer] one more experimental search mode: -use_coverage_pairs=1 | Kostya Serebryany | 2015-02-20 | 1 | -0/+25 |
* | [fuzzer] split main() into FuzzerDriver() that takes a callback as a paramete... | Kostya Serebryany | 2015-02-19 | 1 | -5/+2 |
* | [fuzzer] add flag prefer_small_during_initial_shuffle, be a bit more verbose | Kostya Serebryany | 2015-02-04 | 1 | -5/+15 |
* | [fuzzer] add -runs=N to limit the number of runs per session. Also, make sure... | Kostya Serebryany | 2015-02-04 | 1 | -7/+10 |
* | [fuzzer] make multi-process execution more verbose; fix mutation to actually ... | Kostya Serebryany | 2015-02-04 | 1 | -2/+2 |
* | [fuzzer]: fix exit code, add more diagnostics | Kostya Serebryany | 2015-02-04 | 1 | -0/+1 |
* | [fuzzer] update the include line to use the new header name | Kostya Serebryany | 2015-02-03 | 1 | -1/+1 |
* | [fuzzer] add -use_full_coverage_set=1 which solves FullCoverageSetTest. This ... | Kostya Serebryany | 2015-01-29 | 1 | -0/+29 |
* | [fuzzer] minor cleanup based on reviews: remove redundant includes, fix a cop... | Kostya Serebryany | 2015-01-29 | 1 | -2/+0 |
* | Reverting r227452, which adds back the fuzzer library. Now excluding the fuzz... | Aaron Ballman | 2015-01-29 | 1 | -0/+170 |
* | Temporarily reverting the fuzzer library as it causes too many build issues f... | Aaron Ballman | 2015-01-29 | 1 | -170/+0 |
* | [fuzzer] add option -save_minimized_corpus | Kostya Serebryany | 2015-01-28 | 1 | -1/+10 |
* | Add lit-style tests for the Fuzzer library | Kostya Serebryany | 2015-01-28 | 1 | -2/+2 |
* | Add a Fuzzer library | Kostya Serebryany | 2015-01-27 | 1 | -0/+161 |