2021-02-04 16:09:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fuzz/Fuzz.h"
|
|
|
|
|
2021-08-31 16:36:25 +00:00
|
|
|
#if defined(SK_ENABLE_PARAGRAPH)
|
|
|
|
|
2021-02-04 16:09:59 +00:00
|
|
|
void fuzz_SkParagraph(Fuzz* f);
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
|
|
if (size > 4000) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
|
|
fuzz_SkParagraph(&fuzz);
|
|
|
|
return 0;
|
|
|
|
}
|
2021-08-31 16:36:25 +00:00
|
|
|
|
|
|
|
#endif
|