ec1c620316
This should make reproducing certain fuzzes easier between oss-fuzz and a typical dev's desktop. This was the most straight-forward way I could think of to accomplish this. An ideal solution would "compile" a set of fonts that was not the test set and embed it, but I lack the domain knowledge to craft such a set. If this method works ok, we can explore making the font set more robust and varied. Bug: 818769 Change-Id: I03eb2bc316caf7aec3ffa88e59ff29d76c8557ec Reviewed-on: https://skia-review.googlesource.com/c/177800 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Ben Wagner <bungeman@google.com>
20 lines
509 B
C++
20 lines
509 B
C++
/*
|
|
* Copyright 2018 Google, LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "../Fuzz.h"
|
|
#include "SkTestFontMgr.h"
|
|
#include "SkFontMgrPriv.h"
|
|
|
|
void fuzz_RasterN32Canvas(Fuzz* f);
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
gSkFontMgr_DefaultFactory = &sk_tool_utils::MakePortableFontMgr;
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
fuzz_RasterN32Canvas(&fuzz);
|
|
return 0;
|
|
}
|