File: fuzz.cc

package info (click to toggle)
re2 20210201%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,868 kB
  • sloc: cpp: 20,723; python: 358; makefile: 315; perl: 224; sh: 217; ansic: 7
file content (21 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 The RE2 Authors.  All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>

// Entry point for libFuzzer.
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);

int main(int argc, char** argv) {
  uint8_t data[32];
  for (int i = 0; i < 32; i++) {
    for (int j = 0; j < 32; j++) {
      data[j] = random() & 0xFF;
    }
    LLVMFuzzerTestOneInput(data, 32);
  }
  return 0;
}