2018-10-11 13:38:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "fuzz/Fuzz.h"
|
2018-10-11 13:38:33 +00:00
|
|
|
|
|
|
|
void fuzz_PolyUtils(Fuzz* f);
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 4000) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-10-11 13:38:33 +00:00
|
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
|
|
fuzz_PolyUtils(&fuzz);
|
|
|
|
return 0;
|
|
|
|
}
|