summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Fuzzer/test/fuzzer.test
Commit message (Expand)AuthorAgeFilesLines
* Moving libFuzzer from LLVM to compiler-rt.George Karpenkov2017-08-211-70/+0
* [libFuzzer] explicitly use -fsanitize-coverage=trace-pc-guard in test/dump_co...Kostya Serebryany2017-08-141-1/+1
* [libFuzzer] use the in-binary pc table (instead of PCs captured at run-time) ...Kostya Serebryany2017-08-041-5/+0
* [libFuzzer] remove the now redundant 'LLVMFuzzer-' prefix from libFuzzer testsKostya Serebryany2017-08-041-35/+35
* Port libFuzzer tests to LIT. Do not require two-stage build for check-fuzzer.George Karpenkov2017-08-041-20/+35
* Generate error reports when a fuzz target exits.Matt Morehouse2017-07-201-3/+3
* [libFuzzer] Change Uninstrumented test name.Marcos Pividori2017-02-081-1/+1
* [libFuzzer] Update fuzzer.test to properly set environment variables.Marcos Pividori2017-02-081-1/+1
* [libFuzzer] Update test to consider different exceptions.Marcos Pividori2017-02-081-1/+1
* [libFuzzer] use print+exit(1) instead of assert to report an errorKostya Serebryany2017-01-211-1/+1
* [libFuzzer] add an assert to protect against LLVMFuzzerInitialize changing a...Kostya Serebryany2017-01-201-0/+3
* [libFuzzer] build libFuzzer itself with asanKostya Serebryany2016-12-121-1/+2
* [libFuzzer] test cleanupKostya Serebryany2016-12-101-5/+3
* [libFuzzer] switch all libFuzzer tests to use -fsanitize-coverage=trace-pc-gu...Kostya Serebryany2016-12-101-5/+0
* [libFuzzer] enable use_cmp by defaultKostya Serebryany2016-10-271-1/+1
* [libFuzzer] add StandaloneFuzzTargetMain.c and a test for itKostya Serebryany2016-10-251-1/+1
* [libFuzzer] add a test for asan's strict_string_checks=1Kostya Serebryany2016-10-221-0/+4
* [libFuzzer] refactoring to make -shrink=1 work for value profile, added a test.Kostya Serebryany2016-10-051-5/+5
* [libFuzzer] add ShrinkValueProfileTest, move code around, NFCKostya Serebryany2016-10-051-1/+1
* [libFuzzer] add -exit_on_src_pos to test libFuzzer itself, add a test script ...Kostya Serebryany2016-09-271-0/+4
* [libFuzzer] change trace-pc to use 8-byte guardsKostya Serebryany2016-09-171-0/+4
* [libFuzzer] make caller-callee feedback work with trace-pc-guardKostya Serebryany2016-09-151-1/+2
* [libFuzzer] add 8-bit counters to trace-pc-guard handlerKostya Serebryany2016-09-151-1/+7
* [libFuzzer] start using trace-pc-guard as an alternative source of coverageKostya Serebryany2016-09-141-0/+1
* [libFuzzer] add a test that is built w/o coverage instrumentation but has the...Kostya Serebryany2016-06-081-0/+3
* [libfuzzer] splitting fuzzer.testMike Aizatsky2016-06-031-97/+0
* [libFuzzer] when an invalid flag is given, warn, but don't crashKostya Serebryany2016-06-011-0/+4
* [libFuzzer] use __sanitizer_set_report_fd with -close_fd_mask. This allows us...Kostya Serebryany2016-05-271-1/+3
* [libFuzzer] reimplement the way we do -only_ascii to allow more 'const' in fu...Kostya Serebryany2016-05-261-0/+3
* [libFuzzer] print stats if we crash on empty inputKostya Serebryany2016-05-251-0/+3
* [libFuzzer] print the file name before executing the input so that if there i...Kostya Serebryany2016-05-131-2/+2
* [libFuzzer] print stats after running individual inputsKostya Serebryany2016-05-041-0/+4
* [libFuzzer] warn if the corpus is emptyKostya Serebryany2016-04-181-0/+1
* [libFuzzer] add a better warning for command line flags with -- (two dashes)Kostya Serebryany2016-04-151-0/+2
* [libFuzzer] don't report memory leaks if we are dying due to a timeout (just ...Kostya Serebryany2016-03-241-4/+0
* [libFuzzer] add a flag close_fd_mask so that we can silence spammy targets by...Kostya Serebryany2016-03-181-0/+29
* [libFuzzer] read corpus dirs recursivelyKostya Serebryany2016-03-181-0/+9
* [libFuzzer] deprecate several flagsKostya Serebryany2016-03-171-1/+1
* [libFuzzer] add generic signal handlers so that libFuzzer can report at least...Kostya Serebryany2016-03-011-0/+5
* [libFuzzer] add -print_final_stats=1 flagKostya Serebryany2016-02-261-0/+8
* [libFuzzer] get rid of UserSuppliedFuzzer; NFCKostya Serebryany2016-02-131-0/+1
* [libFuzzer] remove UserSuppliedFuzzer from the interface (it was a bad idea).Kostya Serebryany2016-02-131-2/+0
* [libFuzzer] provide a plain C interface for custom mutators (experimental)Kostya Serebryany2016-02-131-0/+4
* [libFuzzer] make -runs=N flag also affect the simple runner (will execute eve...Kostya Serebryany2016-02-121-1/+7
* [libFuzzer] hot fix a testKostya Serebryany2016-02-041-1/+1
* [libFuzzer] don't write the test unit when a leak is detected (since we don't...Kostya Serebryany2016-02-041-0/+3
* [libFuzzer] allow passing 1 or more files as individual inputsKostya Serebryany2016-02-021-0/+12
* [libFuzzer] fail if the corpus dir does not existKostya Serebryany2016-02-021-0/+3
* [libFuzzer] use std::mt19937 for generating random numbers by default. Fix My...Kostya Serebryany2016-01-191-0/+3
* [libFuzzer] introduce LLVMFuzzerInitializeKostya Serebryany2016-01-161-0/+2
OpenPOWER on IntegriCloud