summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp')
-rw-r--r--gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp b/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.cpp
new file mode 100644
index 00000000000..4f31b3e52c1
--- /dev/null
+++ b/gnu/llvm/lib/Fuzzer/test/LeakTimeoutTest.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 leak.
+#include <cstdint>
+#include <cstddef>
+
+static volatile int *Sink;
+
+extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
+ if (!Size) return 0;
+ Sink = new int;
+ Sink = new int;
+ while (Sink) *Sink = 0; // Infinite loop.
+ return 0;
+}
+