diff options
author | Kostya Serebryany <kcc@google.com> | 2016-04-27 19:52:34 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-04-27 19:52:34 +0000 |
commit | 7018a1aaa49ea109b30a5440daac45e9dbbd4e0d (patch) | |
tree | bf399ab2d68b726744af6cac168654e2ae79440f /llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp | |
parent | 289bd5f6843ba3e7a7a1831ce59d25aedae75aae (diff) | |
download | llvm-7018a1aaa49ea109b30a5440daac45e9dbbd4e0d.zip llvm-7018a1aaa49ea109b30a5440daac45e9dbbd4e0d.tar.gz llvm-7018a1aaa49ea109b30a5440daac45e9dbbd4e0d.tar.bz2 |
[libFuzzer] disable leak detection if we have tried it for 1000 times w/o finding a leak
llvm-svn: 267770
Diffstat (limited to 'llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp b/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp new file mode 100644 index 0000000..604d8fa --- /dev/null +++ b/llvm/lib/Fuzzer/test/AccumulateAllocationsTest.cpp @@ -0,0 +1,17 @@ +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. + +// Test with a more mallocs than frees, but no leak. +#include <cstdint> +#include <cstddef> + +const int kAllocatedPointersSize = 10000; +int NumAllocatedPointers = 0; +int *AllocatedPointers[kAllocatedPointersSize]; + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { + if (NumAllocatedPointers < kAllocatedPointersSize) + AllocatedPointers[NumAllocatedPointers++] = new int; + return 0; +} + |