diff options
author | Kostya Serebryany <kcc@google.com> | 2016-09-27 00:10:20 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-09-27 00:10:20 +0000 |
commit | 5ff481fd9e9d8fb4a057a1cfc0b5041facfeca15 (patch) | |
tree | 718d12ea3e12f62bf2bf1b1f930388d5f56139f4 /llvm/lib/Fuzzer/FuzzerOptions.h | |
parent | bde62d78e92256a2e176e96308119263d04d2648 (diff) | |
download | bcm5719-llvm-5ff481fd9e9d8fb4a057a1cfc0b5041facfeca15.tar.gz bcm5719-llvm-5ff481fd9e9d8fb4a057a1cfc0b5041facfeca15.zip |
[libFuzzer] add -exit_on_src_pos to test libFuzzer itself, add a test script for RE2 that uses this flag
llvm-svn: 282458
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerOptions.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerOptions.h b/llvm/lib/Fuzzer/FuzzerOptions.h index cb3679d6a85..56c35aa5253 100644 --- a/llvm/lib/Fuzzer/FuzzerOptions.h +++ b/llvm/lib/Fuzzer/FuzzerOptions.h @@ -40,6 +40,7 @@ struct FuzzingOptions { std::string OutputCorpus; std::string ArtifactPrefix = "./"; std::string ExactArtifactPath; + std::string ExitOnSrcPos; bool SaveArtifacts = true; bool PrintNEW = true; // Print a status line when new units are found; bool OutputCSV = false; |