harfbuzz/test/fuzzing/main.cc
Behdad Esfahbod bdfed8f113 [blob] Add failing versions of create API
Fixes https://github.com/harfbuzz/harfbuzz/issues/2567

New API:
+hb_blob_create_or_fail()
+hb_blob_create_from_file_or_fail()

Use these in util/ to distinguish empty file from not-found file.
Only err on the latter.
2021-06-15 13:56:30 -06:00

22 lines
459 B
C++

#include "hb-fuzzer.hh"
#include <cassert>
#include <cstdio>
int main (int argc, char **argv)
{
for (int i = 1; i < argc; i++)
{
hb_blob_t *blob = hb_blob_create_from_file_or_fail (argv[i]);
assert (blob);
unsigned len = 0;
const char *font_data = hb_blob_get_data (blob, &len);
printf ("%s (%u bytes)\n", argv[i], len);
LLVMFuzzerTestOneInput ((const uint8_t *) font_data, len);
hb_blob_destroy (blob);
}
return 0;
}