Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
FuzzPrecompile.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2023 Google LLC
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "fuzz/Fuzz.h"
10
12
13extern "C" {
14
15 // Set default LSAN options.
16 const char *__lsan_default_options() {
17 // Don't print the list of LSAN suppressions on every execution.
18 return "print_suppressions=0";
19 }
20
21 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
22 if (size > 4000) {
23 return 0;
24 }
26 auto fuzz = Fuzz(data, size);
27 fuzz_Precompile(&fuzz);
28 return 0;
29 }
30
31} // extern "C"
Definition Fuzz.h:24
void UsePortableFontMgr()
void fuzz_Precompile(Fuzz *f)
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
const char * __lsan_default_options()