summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/FuzzerDriver.cpp
Commit message (Expand)AuthorAgeFilesLines
...
* [libFuzzer] remove the C++-ish variant of FuzzerDriver from the interfaceKostya Serebryany2016-02-131-6/+7
* [libFuzzer] get rid of UserSuppliedFuzzer; NFCKostya Serebryany2016-02-131-3/+3
* [libFuzzer] simplify the code around Random. NFCKostya Serebryany2016-02-131-11/+10
* [libFuzzer] remove UserSuppliedFuzzer from the interface (it was a bad idea).Kostya Serebryany2016-02-131-13/+3
* [libFuzzer] make -runs=N flag also affect the simple runner (will execute eve...Kostya Serebryany2016-02-121-2/+5
* [libFuzzer] allow passing 1 or more files as individual inputsKostya Serebryany2016-02-021-2/+28
* [libFuzzer] add -timeout_exitcode optionKostya Serebryany2016-01-291-0/+1
* [libFuzzer] add -abort_on_timeout optionKostya Serebryany2016-01-231-0/+1
* [libFuzzer] use std::mt19937 for generating random numbers by default. Fix My...Kostya Serebryany2016-01-191-4/+10
* [libFuzzer] replace vector with a simpler data structure in the Dictionaries ...Kostya Serebryany2016-01-161-1/+2
* [libFuzzer] do mutations based on memcmp/strcmp interceptors under a separate...Kostya Serebryany2016-01-151-0/+1
* [libFuzzer] use custom stol; also introduce __libfuzzer_is_present so that us...Kostya Serebryany2016-01-151-1/+17
* [libFuzzer] change the way trace-based mutations are applied. Instead of a cu...Kostya Serebryany2016-01-091-2/+0
* [libFuzzer] add a position hint to the dictionary-based mutatorKostya Serebryany2016-01-071-1/+1
* [libfuzzer] print_new_cov_pcs experimental option.Mike Aizatsky2016-01-061-0/+1
* [libFuzzer] deprecate -save_minimized_corpus, -merge can be used insteadKostya Serebryany2015-12-191-3/+6
* [LibFuzzer] Introducing FUZZER_FLAG_UNSIGNED and using it for seeding.Mike Aizatsky2015-12-101-2/+18
* [libFuzzer] add a flag -exact_artifact_pathKostya Serebryany2015-11-251-0/+2
* [libFuzzer] don't crash when reporting a leak in test_single_input modeKostya Serebryany2015-11-211-2/+4
* output_csv libfuzzer optionMike Aizatsky2015-11-121-0/+1
* [libFuzzer] experimental flag -drill (another search heuristic; Mike Aizatsky...Kostya Serebryany2015-11-121-5/+13
* [libFuzzer] make -test_single_input more reliable: make sure the input's size...Kostya Serebryany2015-11-031-1/+3
* [libFuzzer] add -merge flag to merge corporaKostya Serebryany2015-10-241-0/+5
* [libFuzzer] use the indirect caller-callee counter as an independent search h...Kostya Serebryany2015-10-221-0/+1
* [libFuzzer] remove the deprecated 'tokens' featureKostya Serebryany2015-10-221-31/+0
* Make a bunch of static arrays const.Craig Topper2015-10-181-1/+1
* [libFuzzer] add -shuffle flagKostya Serebryany2015-10-171-0/+1
* [libFuzzer] When -test_single_input crashes the test it is not necessary to w...Kostya Serebryany2015-10-161-4/+5
* [libFuzzer] add -artifact_prefix flagKostya Serebryany2015-10-091-0/+2
* [libFuzzer] trying to fix at-exit hangKostya Serebryany2015-10-031-1/+1
* [libFuzzer] remove experimental flag and functionalityKostya Serebryany2015-10-021-1/+0
* [libFuzzer] add a flag -max_total_timeKostya Serebryany2015-10-021-0/+1
* [LibFuzzer] test_single_input option to run a single test case.Ivan Krasin2015-10-011-0/+9
* [libFuzzer] add two more variants of FuzzerDriver for convenienceKostya Serebryany2015-09-101-20/+33
* [libFuzzer] remove -iterations as redundant (there is also -num_runs)Kostya Serebryany2015-09-081-1/+1
* [libFuzzer] actually make the dictionaries work (+docs)Kostya Serebryany2015-09-041-6/+5
* [libFuzzer] adding a parser for AFL-style dictionaries + tests.Kostya Serebryany2015-09-031-0/+7
* [libFuzzer] deprecate the -tokens flag. This was a bad idea because the corpu...Kostya Serebryany2015-09-021-1/+1
* [libFuzzer] add two flags, -tbm_depth and -tbm_width to control how the trace...Kostya Serebryany2015-08-121-0/+2
* [libFuzzer] add -only_ascii flagKostya Serebryany2015-08-111-0/+1
* [libFuzzer] add option -report_slow_units=Nsec to control when slow units are...Kostya Serebryany2015-08-051-0/+1
* [libFuzzer] allow users to supply their own implementation of randKostya Serebryany2015-07-241-2/+3
* [lib/Fuzzer] start getting rid of std::cerr. Sadly, these parts of C++ librar...Kostya Serebryany2015-05-231-35/+33
* [lib/Fuzzer] remove -use_coverage_pairs=1, an experimental feature that is un...Kostya Serebryany2015-05-221-1/+0
* [lib/Fuzzer] extend the fuzzer interface to allow user-supplied mutatorsKostya Serebryany2015-05-221-1/+6
* [lib/Fuzzer] ignore flags that start with --; use git pull --rebase instead o...Kostya Serebryany2015-05-211-0/+10
* [lib/Fuzzer] change the meaning of -timeout flag: now timeout is applied to e...Kostya Serebryany2015-05-191-1/+2
* [lib/Fuzzer] when -sync_command=<CMD> is given, periodically execute 'CMD COR...Kostya Serebryany2015-05-181-0/+3
* [lib/Fuzzer] guess the right number of workers if -jobs=N is given but -worke...Kostya Serebryany2015-05-121-0/+6
* [lib/Fuzzer] remove the -dfsan=1 flag, just use -use_traces=1 (w/ or w/o dfsan)Kostya Serebryany2015-05-121-1/+0
OpenPOWER on IntegriCloud