File: main.cc

package info (click to toggle)
harfbuzz 12.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100,084 kB
  • sloc: ansic: 77,785; cpp: 61,949; python: 4,961; xml: 4,651; sh: 426; makefile: 105
file content (29 lines) | stat: -rw-r--r-- 569 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "hb-fuzzer.hh"

#include <cassert>
#include <cstdio>

int main (int argc, char **argv)
{
  printf ("TAP version 14\n");

  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);

    printf ("ok %d - %s\n", i, argv[i]);

    hb_blob_destroy (blob);
  }

  printf ("1..%d\n", argc - 1);

  return 0;
}