| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | [libFuzzer] add -only_ascii flag | Kostya Serebryany | 2015-08-11 | 1 | -1/+6 |
* | Add missing include guard to FuzzerInternal.h, NFC. | Yaron Keren | 2015-08-10 | 1 | -0/+6 |
* | [libFuzzer] move the mutators to public interface so that custom mutators may... | Kostya Serebryany | 2015-08-06 | 1 | -17/+0 |
* | [libFuzzer] add one more mutation strategy: byte shuffling | Kostya Serebryany | 2015-08-06 | 1 | -0/+2 |
* | [libFuzzer] add option -report_slow_units=Nsec to control when slow units are... | Kostya Serebryany | 2015-08-05 | 1 | -0/+1 |
* | [libFuzzer] more refactoring of the Mutator and adding tests to it | Kostya Serebryany | 2015-08-01 | 1 | -1/+7 |
* | [libFuzzer] start refactoring the Mutator and adding tests to it | Kostya Serebryany | 2015-08-01 | 1 | -0/+2 |
* | [libFuzzer] allow users to supply their own implementation of rand | Kostya Serebryany | 2015-07-24 | 1 | -3/+6 |
* | [libFuzzer] dump long running units to disk | Kostya Serebryany | 2015-07-23 | 1 | -1/+1 |
* | [lib/Fuzzer] start getting rid of std::cerr. Sadly, these parts of C++ librar... | Kostya Serebryany | 2015-05-23 | 1 | -0/+1 |
* | [lib/Fuzzer] remove -use_coverage_pairs=1, an experimental feature that is un... | Kostya Serebryany | 2015-05-22 | 1 | -2/+0 |
* | [lib/Fuzzer] extend the fuzzer interface to allow user-supplied mutators | Kostya Serebryany | 2015-05-22 | 1 | -4/+16 |
* | [lib/Fuzzer] change the meaning of -timeout flag: now timeout is applied to e... | Kostya Serebryany | 2015-05-19 | 1 | -0/+1 |
* | [lib/Fuzzer] more efficient reload logic; also don't spam git too much | Kostya Serebryany | 2015-05-19 | 1 | -2/+1 |
* | [lib/Fuzzer] when -sync_command=<CMD> is given, periodically execute 'CMD COR... | Kostya Serebryany | 2015-05-18 | 1 | -0/+6 |
* | [lib/Fuzzer] Add SHA1 implementation from public domain. | Kostya Serebryany | 2015-05-14 | 1 | -0/+5 |
* | [lib/Fuzzer] guess the right number of workers if -jobs=N is given but -worke... | Kostya Serebryany | 2015-05-12 | 1 | -0/+2 |
* | [lib/Fuzzer] remove the -dfsan=1 flag, just use -use_traces=1 (w/ or w/o dfsan) | Kostya Serebryany | 2015-05-12 | 1 | -1/+0 |
* | [lib/Fuzzer] rename FuzzerDFSan.cpp to FuzzerTraceState.cpp; update comments.... | Kostya Serebryany | 2015-05-11 | 1 | -1/+1 |
* | [lib/Fuzzer] add a trace-based mutatation logic. Same idea as with DFSan-base... | Kostya Serebryany | 2015-05-11 | 1 | -0/+1 |
* | [lib/Fuzzer] use -fsanitize-coverage=trace-cmp when building LLVM with LLVM_U... | Kostya Serebryany | 2015-05-08 | 1 | -3/+9 |
* | [lib/Fuzzer] change the way we use taint information for fuzzing. Now, we run... | Kostya Serebryany | 2015-05-07 | 1 | -1/+11 |
* | [lib/Fuzzer] minor refactoring/simplification, NFC | Kostya Serebryany | 2015-05-07 | 1 | -2/+4 |
* | [lib/Fuzzer] on crash print the contents of the crashy input as base64 | Kostya Serebryany | 2015-05-05 | 1 | -0/+1 |
* | [fuzzer] Add support for token-based fuzzing (e.g. for C++). Allow string fla... | Kostya Serebryany | 2015-03-31 | 1 | -11/+15 |
* | [fuzzer] when a single unit takes over 1 second to run and it is the slowest ... | Kostya Serebryany | 2015-03-30 | 1 | -0/+1 |
* | [fuzzer] print various stats in a unified way | Kostya Serebryany | 2015-03-30 | 1 | -0/+1 |
* | DFSan-based fuzzer (proof of concept). | Kostya Serebryany | 2015-03-30 | 1 | -0/+4 |
* | [sanitizer/coverage] Add AFL-style coverage counters (search heuristic for fu... | Kostya Serebryany | 2015-03-03 | 1 | -0/+10 |
* | [fuzzer] one more experimental search mode: -use_coverage_pairs=1 | Kostya Serebryany | 2015-02-20 | 1 | -0/+3 |
* | [fuzzer] split main() into FuzzerDriver() that takes a callback as a paramete... | Kostya Serebryany | 2015-02-19 | 1 | -1/+5 |
* | [fuzzer] add flag prefer_small_during_initial_shuffle, be a bit more verbose | Kostya Serebryany | 2015-02-04 | 1 | -0/+8 |
* | [fuzzer] add -runs=N to limit the number of runs per session. Also, make sure... | Kostya Serebryany | 2015-02-04 | 1 | -0/+2 |
* | [fuzzer] make multi-process execution more verbose; fix mutation to actually ... | Kostya Serebryany | 2015-02-04 | 1 | -1/+2 |
* | [fuzzer] add -use_full_coverage_set=1 which solves FullCoverageSetTest. This ... | Kostya Serebryany | 2015-01-29 | 1 | -0/+5 |
* | Reverting r227452, which adds back the fuzzer library. Now excluding the fuzz... | Aaron Ballman | 2015-01-29 | 1 | -0/+81 |
* | Temporarily reverting the fuzzer library as it causes too many build issues f... | Aaron Ballman | 2015-01-29 | 1 | -81/+0 |
* | [fuzzer] add option -save_minimized_corpus | Kostya Serebryany | 2015-01-28 | 1 | -1/+5 |
* | Add a Fuzzer library | Kostya Serebryany | 2015-01-27 | 1 | -0/+77 |