diff options
author | Kostya Serebryany <kcc@google.com> | 2015-12-19 02:49:09 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2015-12-19 02:49:09 +0000 |
commit | 27ab2d759f4612126ea3ed9698ff7466804cf7bc (patch) | |
tree | 539df51e3d0d86cabdf404001d4d3947bc60037a /llvm/lib/Fuzzer/test/FuzzerUnittest.cpp | |
parent | d63db6ef1f23e597277005c9ba177184b0e4065e (diff) | |
download | bcm5719-llvm-27ab2d759f4612126ea3ed9698ff7466804cf7bc.tar.gz bcm5719-llvm-27ab2d759f4612126ea3ed9698ff7466804cf7bc.zip |
[libFuzzer] make CrossOver just one of the other mutations
llvm-svn: 256081
Diffstat (limited to 'llvm/lib/Fuzzer/test/FuzzerUnittest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/FuzzerUnittest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp b/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp index b92e61877c6..8c0012708af 100644 --- a/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp +++ b/llvm/lib/Fuzzer/test/FuzzerUnittest.cpp @@ -239,7 +239,7 @@ TEST(FuzzerMutate, ShuffleBytes1) { TestShuffleBytes(&MutationDispatcher::Mutate_ShuffleBytes, 1 << 15); } TEST(FuzzerMutate, ShuffleBytes2) { - TestShuffleBytes(&MutationDispatcher::Mutate, 1 << 16); + TestShuffleBytes(&MutationDispatcher::Mutate, 1 << 19); } void TestAddWordFromDictionary(Mutator M, int NumIter) { |