diff options
author | Kostya Serebryany <kcc@google.com> | 2015-09-02 23:27:39 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-09-02 23:27:39 +0000 |
commit | 6ea1b69fcf531836ff4cbb513acc1b9f5a552d0b (patch) | |
tree | 3e9bc831040b3f341b3562a5a049266f55599921 /llvm/lib/Fuzzer/FuzzerFlags.def | |
parent | b03ea02479c82430b4149609e0ac3e0490d5ca12 (diff) | |
download | bcm5719-llvm-6ea1b69fcf531836ff4cbb513acc1b9f5a552d0b.tar.gz bcm5719-llvm-6ea1b69fcf531836ff4cbb513acc1b9f5a552d0b.zip |
[libFuzzer] deprecate the -tokens flag. This was a bad idea because the corpus with this flag contains encrypted inputs, not the real inputs, which complicates interoperation with other fuzzers. Instead we'll need to implement AFL dictionary support
llvm-svn: 246734
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerFlags.def')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerFlags.def | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerFlags.def b/llvm/lib/Fuzzer/FuzzerFlags.def index 7bc18af2248..534c867b8e2 100644 --- a/llvm/lib/Fuzzer/FuzzerFlags.def +++ b/llvm/lib/Fuzzer/FuzzerFlags.def @@ -50,8 +50,9 @@ FUZZER_FLAG_INT(workers, 0, FUZZER_FLAG_INT(reload, 1, "Reload the main corpus periodically to get new units" " discovered by other processes.") -FUZZER_FLAG_STRING(tokens, "Use the file with tokens (one token per line) to" - " fuzz a token based input language.") +FUZZER_FLAG_STRING(deprecated_tokens, + "Use the file with tokens (one token per line) to" + " fuzz a token based input language.") FUZZER_FLAG_STRING(apply_tokens, "Read the given input file, substitute bytes " " with tokens and write the result to stdout.") FUZZER_FLAG_STRING(sync_command, "Execute an external command " |